Modules for ords-core microservices based upon proposals
npm install @ords/modulesThis project contains core modules for ords-core
```
npm install @ords/modules --save
typings install npm:@ords/modules --save
npm run build-env
`
Whenever you have made changes you can run the following command
`
npm run build-depoly
`
Scripts
In order to test the project you can now run:
`
npm test
`
To clean the project do:
`
npm run clean
``- Use camleCase instead of underscore
- Document your code with comments
- Write at least unit tests
- Follow established directory structure
Ideas for naming to and directory structure to keep consistensy modules/:type/:type.:custom.ts where type is the type of module and custom can be everything. A mongodb db will be modules/database/database.mongo.ts with the class name being DatabaseMongo.