A simple project that using Deno , a JavaScript runtime that builds for more secure runtime. Some article mentioned that Deno is more secure comparing to Node.js
Official website: https://deno.land/ Shell (Mac, Linux):
curl -fsSL https://deno.land/x/install/install.sh | sh
PowerShell (Windows):
iwr https://deno.land/x/install/install.ps1 -useb | iex
Homebrew (Mac):
brew install deno
Chocolatey (Windows):
choco install deno
Scoop (Windows):
scoop install deno
Build and install from source using Cargo
cargo install deno
deno run index.js
if caught Permission error:
deno run --allow-net --allow-read index.js
Open url: http://localhost:8000/
deno test