This section will help you to start working with Idylle.
1. Install the CLI
npm install -g idylle-cli
2. Setting up your project
idylle new sample
cd sample
npm i
3. Start the project
npm start
1. Initialise your workspace
npm init
npm install --save idylle
2. Create your first file index.js
touch index.js
3. 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.