タグ

ブックマーク / serverjs.io (1)

  • Server.js

    server.js for Node.js Powerful server for Node.js that just works so you can focus on your awesome project: // Include it and extract some methods for convenience const server = require('server'); const { get, post } = server.router; // Launch server with options and a couple of routes server({ port: 8080 }, [ get('/', ctx => 'Hello world'), post('/', ctx => { console.log(ctx.data); return 'ok'; }

    Server.js
    tuki0918
    tuki0918 2017/11/06
  • 1