nerver

1.3.0 • Public • Published

Nerver

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"};

  • QA - 常见问题
  • e.g. - 示例

ENV

port=3001 nerver

or

Create .env:

port=3001

Static Server

Any 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`

ctx

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)

Readme

Keywords

none

Package Sidebar

Install

npm i nerver

Weekly Downloads

2

Version

1.3.0

License

ISC

Unpacked Size

82.1 kB

Total Files

11

Last publish

Collaborators

  • lc60005457