@537/service

@537/service ===

Usage no npm install needed!

<script type="module">
  import 537Service from 'https://cdn.skypack.dev/@537/service';
</script>

README

@537/service

build status

A 'set and forget' opinionated implementation of express. Useful for stateless apis.

const service = require('@537/service');
const pck = require('./package.json');
const index_routes = require('routes/index');
const user_routes = require('routes/user');

// sets up all the routes and middleware
const app = service.bootstrap(pck, {
  '/': index_routes,
  '/user': user_routes
});

// do any extra config here....

// binds the express app to a port and starts listening
const server = service.start(app);

// alternatively:

// set up routes and listen on the port right away
const server = service.run(pck, {
  '/': index_routes,
  '/user': user_routes
});

License

MIT