タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

node.jsとserver.jsに関するbojovsのブックマーク (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
  • 1