タグ

2017年11月6日のブックマーク (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
    naosim
    naosim 2017/11/06
    expressと比べてどうなんだろうなぁ。使ってみよう。