The modular framework for NodeJS.
This is the main module that handles bundles.
- NodeJS >= 10
npm install solfegejs
import solfege from "solfegejs";
import MyBundle from "./MyBundle";
// Create application
let application = solfege.factory();
application.addBundle(new MyBundle);
// Start the application
application.start();
node start.js