https://github.com/pleft/patterns.js
Javascript Patterns with examples
https://github.com/pleft/patterns.js
Last synced: about 1 year ago
JSON representation
Javascript Patterns with examples
- Host: GitHub
- URL: https://github.com/pleft/patterns.js
- Owner: pleft
- License: mit
- Created: 2013-12-12T14:16:28.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-16T09:16:35.000Z (over 12 years ago)
- Last Synced: 2025-02-14T08:48:38.553Z (over 1 year ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#patterns.js
Javascript Patterns with examples
##patterns covered:
- constructor pattern
- decorator pattern
- module pattern
- prototypal pattern
- singleton pattern
- factory pattern
- facade pattern
- observer pattern
- surrogate pattern (not sure if it is *pattern*)
###sources:
* [http://carldanley.com/javascript-design-patterns/](http://carldanley.com/javascript-design-patterns/)
* [http://addyosmani.com/resources/essentialjsdesignpatterns/book/](http://addyosmani.com/resources/essentialjsdesignpatterns/book/)
###useful links:
* [https://bitbucket.org/mvardakis/javascript-stuff/](https://bitbucket.org/mvardakis/javascript-stuff/), An interesting repo, check the inheritance example.