Deno
JavaScript 和 TypeScript 安全运行时,使用 V8, Rust, 和 Tokio 构建。Linux & Mac | Windows | |
---|---|---|
deno | ||
deno_std | ||
deno_install | ||
registry |
安装 #
使用 Shell:
curl -fsSL https://deno.land/x/install/install.sh | sh
Or 使用 PowerShell:
iwr https://deno.land/x/install/install.ps1 | iex
查看 deno_install ,了解更多。
例子 #
尝试运行一个简单程序:
deno https://deno.land/welcome.ts
或更为复杂点的:
import {serve} from 'https://deno.land/std@v0.3.2/http/server.ts';
async function main() {
const body = new TextEncoder().encode('Hello World\n');
for await (const req of serve(':8000')) {
req.respond({body});
}
}
main();