登录 注册
当前位置:主页 > 资源下载 > 22 > 利用QuickJS和Rust进行Vue SSR的快速实验项目:fast-vue-ssr

利用QuickJS和Rust进行Vue SSR的快速实验项目:fast-vue-ssr

  • 更新:2024-09-16 20:40:50
  • 大小:239KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

带有Rust和QuickJS的Fast Vue SSR 使用 , 和进行服务器端渲染Vue.js应用程序的正在进行的实验。 use renderer :: RendererPool; #[tokio::main] pub async fn main () -> io:: Result <()> { let pool = Arc :: new (Mutex :: new (RendererPool :: new ( 64 ))); let renderer = warp :: path :: full (). map ( move | path: FullPath | { let renderer = Arc :: clone ( & pool); let s = path. as_str (). to_string ();