Fast, unopinionated, minimalist web framework for node.
const expressio = require('express-io')
const app = expressio()
This is a Node.js module available through the npm registry.
Before installing, download and install Node.js. Node.js 0.10 or higher is required.
If this is a brand new project, make sure to create a package.json
first with
the npm init
command.
Installation is done using the Working with the npm registry:
$ npm install @gunantos/express-io@0.0.1
Install via package.json:
"@gunantos/express-io": "0.0.1"
- Robust routing
Install dependencies:
$ npm install @gunantos/express-io@0.0.1
create src/index.js
const expressio = require('express-io')
const app = expressio();
expressio.start()
Start the server:
$ npm start
View the website at: http://localhost:5000
See the Contributing Guide for more technical details on contributing.
If you discover a security vulnerability in express-io, please see Security Policies and Procedures.
To run the test suite, first install the dependencies, then run npm test
:
$ npm install
$ npm test