1.0.16 • Published 7 years ago

fastpress v1.0.16

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

fastpress

A fast and simple HTTP library for NodeJS

Features

  • Only supports GET and POST Requests
  • Webpack 3 based.
  • ES6 as a source.
  • Exports in a umd format so your library works everywhere.
  • ES6 test setup with Mocha and Chai.
  • Linting with ESLint.

Misc

An example of using fastpress

const fastpress = require('fastpress');
const app = new fastpress();

app.get('/cat', (req, res) => {
  res.send('meow!')
});

app.post('/dog', (req, res) => {
  console.log(req.body);
  res.send('bark!')
});

app.listen(8080, () => {
  console.log('Server listening on ' + HOST + ':' + _port);  
});

Readings

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago