tymly
A framework for building and sharing workflows in Node.js.
Install
$ npm install tymly --save
Usage
const tymly = require('tymly')
tymly.boot(
{
blueprintPaths: [
'/tymly/blueprints/hr',
'/tymly/blueprints/payroll'
],
pluginPaths: [
'/tymly/plugins/tymly-express-plugin',
'/tymly/plugins/tymly-etl-plugin',
'/tymly/plugins/tymly-pg-plugin'
],
},
function (err, services) {
if (err) {
console.error(err)
} else {
const port = 3000
services.server.listen(port, function () {
console.log('Example app listening on port ' + port);
})
}
}
)
Why?
Tymly has been developed as an alternative for organisations (especially non-profits and Government departments) who need continually-evolving business software - but can do without the complexity, expense and vendor lock-in that usually accompanies it.
Documentation
For documentation, please visit http://www.tymly.io/
Tests
$ npm test
License
MIT