node-boost-beta
v0.0.6
Published
Boost Serverside in Node
Downloads
4
Readme
BOOST JS 🚀
npm install node-boost-beta
const boost = require('node-boost-beta');
const port = 3000;
const app = boost.app;
app.get('/', function(req, res) {
res.send('It Works!');
});
boost.launch(port, err => {
if (err) {
console.log(err);
}
});
Notable Npm Modules
Core:
- thinky: RethinkDB ORM
- socket.io: socket connections between server and client with multiplexing, fallbacks, auto-reconnect, and other useful features
Running on your machine
Prep
This project requires Rethinkdb to be installed on your machine https://www.rethinkdb.com/docs/install/
Additionally, you will need node and npm. Current recommend version is 6.x