Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leodutra/web-commons
Collection of useful JavaScript snippets, packaged in one open source lib.
https://github.com/leodutra/web-commons
Last synced: 1 day ago
JSON representation
Collection of useful JavaScript snippets, packaged in one open source lib.
- Host: GitHub
- URL: https://github.com/leodutra/web-commons
- Owner: leodutra
- License: mit
- Created: 2013-10-07T23:32:08.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-22T13:27:33.000Z (almost 9 years ago)
- Last Synced: 2023-03-23T22:29:06.070Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 127 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#web-commons
Collection of useful JavaScript snippets, packaged in one open source lib.
*jQuery 1.5+ required (1.9+ recommended)*
## Download Releases
https://github.com/LeoDutra/web-commons/releases## Documentation
There's no reference yet.
But you can just execute on your console:
```js
web.typify(web); // show property/function list, breaking lines
```## Logging & Debugging
You can turn debug mode on and log:
```js
web.debug = true; // debug mode on
web.log('something', 'another thing', 123);
```**Import `web-commons.logger.js` after `web-commons.js` to use the logger addon (IE6+)**
If you don't include the logger addon, it will fallback and use the built-in console of the web browser (IE 8+, Ch, FF, Op, Saf).