ku4node-persistence
v7.0.9
Published
kodmunki persistence
Downloads
12
Readme
ku4node-persistence
kodmunki™ Utilities for ECMAScript Persistence
Conventions
Access Modifiers
ku4node-persistence uses a convention for access modifiers as follows:
| Modifier | Character | Description | | --- | --- | --- | | Public | N/A | Public members may be accessed by all internal and external dependents. They are default members and have no conventional modifier. | | Protected | $ | Protected members may be accessed by children | | Abstract | $ | Abstract members are Protected members that expect to have implementation details defined by children. | | Virtual | $ | Virtual members are Abstract members that have a defaulted defined implementation that can be and will plausibly be overridden by children. | | Private | _ | Private members should only be accessed by the defining class. |
Documentation
Markdown documentation for this project can be found in the README.API.md. JSDoc HTML can be found by running npm run docs
and navigating to ./jsdoc/index.html
.
Testing
Linting, testing, and coverage checks can be performed by running npm run check
.
Build
Distribution package can be build with npm run build
Source Tree
.
├── capability
│ ├── bsonId.js
│ └── entity.js
├── index.js
└── repositories
├── AbstractRepository.js
└── Repository.js