我主要还是一个后端的码农,那么Nodejs可以作为一个后端的容器,WebAssembly放到里面去执行。
正好也可以放到Serverless中。Faas免费多多的。
Express
我们在项目跟目录中创建一个文件夹
$ mkdir express
$ cd express
通过 npm init
命令为你的应用创建一个 package.json
文件。
$ npm init
{
"name": "wasm_express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
}
}
接下来在 express
目录下安装 Express 并将其保存到依赖列表中。如下:
$ npm install express --save
创建index.js
文件,然后输入
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
然后运行一下
$ node index.js
[图片上传失败...(image-ed1c6a-1620384413767)]
我们访问一下。
[图片上传失败...(image-ba7f85-1620384413768)]
那么我们接着去更新一下我们的wasm,增加一个函数,接收一个字符串,然后接着返回一个字符串。
修改rust
由于我们已经不使用alert了。
那么我们我们需要修改下say的代码
#[wasm_bindgen]
pub fn say(s: String) -> String {
let r = String::from("hello ");
return r + &s;
}
编译
$ wasm-pack build --target nodejs
一定要加上 --target nodejs
修改JS
然后我们继续改造一下index.js
const { say } = require('../pkg/hello_wasm.js');
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
let hello = say('I love you');
res.send(hello)
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
然后再次运行
得到结果
[图片上传失败...(image-219154-1620384413768)]
很不错哦。
然后我们再搞一点骚操作。我想以后是动态加载的。
say 是否可以放到过程里面去??通过作用域自动把这个say给释放掉。
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
let { say } = require('../pkg/hello_wasm.js');
let hello = say('I love you');
res.send(hello)
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
很好是可以的。
我查找资料的过程中,我们发现可以直接调用不需要生成js!!
// wasm 方式
const fs = require('fs');
const buf = fs.readFileSync('../pkg/hello_wasm_bg.wasm');
const lib = WebAssembly.instantiate(new Uint8Array(buf)).
then(res => {
for (var i=1;i<=10;i++) {
console.log("The factorial of "+i+" = "+res.instance.exports.fact(i))
}
}
);
明天根据这种方式去测试一下。
网友评论