1.0.1 • Published 5 years ago

nature-http v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

nature

一个非常自然的 web 框架

没有任何黑魔法,源码仅有 250 行,纯粹的 nodejs 原生 http 库,为了性能没有使用 async。

使用例子

const nature = require('nature-http');
const staticPath = nature.resolve(process.cwd(), './example/public/');

// nature.pages['404'] = '/api/test?bbb=222';

const schema = `
  type Query {
      hello: String
  }
`;

nature.listenThreads(4100, ctx => {
  ctx.get('/api/get', data => {
    ctx.res.end(JSON.stringify(data));
  });
  ctx.post('/api/post', data => {
    console.log(data);
    ctx.res.end(JSON.stringify(data));
  });
  ctx.graph('/graphql', schema, {
    hello: () => 'hello, graphql',
  });
  ctx.static(nature.resolve(staticPath));
});
1.0.1

5 years ago

1.0.0

6 years ago