Skip to content

gunantos/express-io

Repository files navigation

APP KITA Logo

Fast, unopinionated, minimalist web framework for node.

NPM Version NPM Install Size NPM Downloads

const expressio = require('express-io')
const app = expressio()

Installation

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"

Features

  • Robust routing

Quick Start

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

Contributing

See the Contributing Guide for more technical details on contributing.

Security Issues

If you discover a security vulnerability in express-io, please see Security Policies and Procedures.

Running Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

People

List of all contributors

License

MIT