A node simple Server, create a ts(TypeScript) file, and respond your body, just like a static server or PHP.
# open a dir, just run nerver
npx nerver
# need node, npm(with npx)Create or Edit ./xxx.ts:
export default (ctx) => {
return {
Hello: 'Nerver'
}
}visit http://127.0.0.1:3000/xxx, you will got {"Hello":"Nerver"};
port=3001 nerveror
Create .env:
port=3001Any static file, but *.ts and .*.
/index.html => got `/index.html` or `/index.html.ts`
/any.json => got `any.json` or `any.json.ts`
/any.jpg => got `any.jpg` or `any.jpg.ts`
...
/any.ts => got `Not Found`
/.env => got `Not Found`
Just a koa context - https://koajs.com/#context
ctx.query
ctx.request.body
ctx.request.fields
ctx.request.files
ctx.cookies.get(key)
ctx.cookies.set(key, value)