This section will help you to start working with Idylle.
npm install -g idylle-cli
idylle new sample cd sample npm i
npm start
npm init npm install --save idylle
2. Create your first file index.js
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.
0.0.0.0
8080
localhost:8000
cannot GET /
Last updated 6 years ago