node-association
v0.0.9
Published
a frame work of popular npm modules for building mongo express based application
Downloads
22
Readme
node-association
A few base class to extend from, and a class finder system to find those classes
Installation
npm install --save node-association
ClassFinder
const { ClassFinder } = require('node-association')
Class to be found should be organized inside of a folder in the root directory of the node project For Example we would like to create a series of services where each filer is a Service. Folder should be named using lowercase pluralized version of the class type. Files should be organized in the below manor
root
|- services
|- AService.js
|- AnotherService.js
|- Namespace
|- YetAnotherService.js
|- AlternativeNaming.js
Based on the above example to find AService find anywhere in the application by:
ClassFinder.classFor('A', 'Service')
class file naming is case sensitive
Finding AnotherService:
ClassFinder.classFor('Another', 'Service')
Finding YetAnotherService with the namespacing:
ClassFinder.classFor('Namespace::YetAnother', 'Service')
Namespace is also case sensitive
Finding AlternativeNaming:
ClassFinder.classFor('AlternativeNaming', 'Service')
If desired files can omit the Service portion of the naming.
Too actually require the classes, having is the proper commonjs module exports is also required. Each of the classes may either have the class be the default export e.g.
module.exports = class AService {
}
export default class AService {
}
It is also possible to export the class as an named property e.g.
class AService {}
module.exports = {
AService
}
class AService {}
export AService
The naming of the name export follows the same rules as file naming. It is case sensitive, and the name of the actual class type can be omitted
Presenter
const { Presenter } = require('node-association')
A presenter is a base class that can be extended to wrapper both async and sync functionalities the key performer of the presenter is the instance execute method
class Executer extends Presenter {
execute() {
console.log("HELLO")
}
}
const anExecuter = new Executer
(async () => {
await anExecuter
})() // will print HELLO
the execute function can be an async function or standard function with callback or error first callback.
Mixer
const { Mixer } = require('node-association')
A mixer is a base class that provides the mixin static method to adding mixin functionality. Mixins will override all static and instance methods except constructor will be copied over to the class prototype
class AClass extend Mixer {}
class AMixin {}
AClass.mixin(AMixin)