README
SolfegeJS
The modular framework for NodeJS.
This is the main module that handles bundles.
Requirements
- NodeJS >= 10
Installation
npm install solfegejs
Basic example
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