1.0.14 • Published 6 years ago
@borodindmitriy/vendors-dll v1.0.14
base-code
The repository contains several libraries with reusable code on several projects.
Setup local environment
- Install node >= 10 <11, npm >= 6 <7;
- Install rearguard, npm i -g rearguard;
Deploy for development
- rearguard monorepo --bootstrap --both
Used in projects
Concept (very simple)
Home-tracker (have more code then Concept)
Right now it project not work, because not implemented adapter classes in home-tracker-front-end.
Used technology
- OOP
- SOLID principles
- Design patterns
- Rearguard;
Project structure
├── package.json
└── packages
├── ant-design-vendor
├── back
├── common-vendor
├── deferred_module_test
├── front
├── interfaces
├── isomorphic
├── mobx-vendor
├── react-vendor
└── utils
- ant-design-vendor - contains all atnd dependencies which will be loaded as DLL.
- back - contains reusable code for implement back-end on nodejs.
- common-vendor - contains common dependencies which will be loaded as DLL. -deferred_module_test - this package demonstrate how we can build library for load on demand in target project like a code-splitting, but webpack do not touch files from this package.
- front - contains reusable code (Repository, Transport, Filters, ...) for implement front-end application.
- interfaces - contains interfaces which we will use without implementation.
- isomorphic - contains reusable code between client and server.
- mobx-vendor - contains mobx dependencies which will be loaded as DLL.
- react-vendor - contains react dependencies which will be loaded as DLL.
- utils - contains util functions for different work types.