Getting Started
This section will help you to start working with Idylle.
1. Initialise your workspace
npm init
npm install --save idylle2. Create your first file index.js
touch index.js3. Write the minimum required
const Core = require('idylle').Core;
const app = new Core();
app.start();By default the server's listens on all interfaces 0.0.0.0 on port 8080. If you check in your browser at localhost:8000 you should the the famous express's error handling cannot GET /.
The default HTTP router comes from Express.
Last updated