https://github.com/kundanvishen/modular-js
Modular Javascript Design Patterns Explained with Examples
https://github.com/kundanvishen/modular-js
design-patterns-js examples modular-js oop
Last synced: 13 days ago
JSON representation
Modular Javascript Design Patterns Explained with Examples
- Host: GitHub
- URL: https://github.com/kundanvishen/modular-js
- Owner: kundanvishen
- Created: 2017-12-23T05:21:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-29T18:21:08.000Z (over 7 years ago)
- Last Synced: 2025-03-09T20:59:26.049Z (4 months ago)
- Topics: design-patterns-js, examples, modular-js, oop
- Language: JavaScript
- Homepage: https://kundan.me/modular-js/example/index.html
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ModularJS Examples
Few exmaples and insights about writing Modular Javascript.
Some Rules for Modular Javascript:
* Self Contained Modules
* Everything to do in my modules is in my Modules
* No Global Variables
* If a module manages more than one thing, it should split up.
* Seperation of concerns
* DRY code: (Don't repeat yourself)
* Efficient DOM Usage
* No Memory LeaksThis is the [link to repo on github](https://github.com/kundanvishen/modular-js)