1
0
Fork 0
TheBigWarehouse/BigBoxOfJavascript.md

53 lines
3.2 KiB
Markdown
Raw Normal View History

2015-04-20 18:59:24 +00:00
# The Big Box of Javascript
- [es6-features.org](http://es6-features.org/#SpreadOperator) - An overview of the new features added in EcmaScript 6
## Searching
- [lunr.js](http://lunrjs.com/) - A lightweight search engine to use
- [Defiant.js](http://www.defiantjs.com/) - Search JSON structures with XPath expressions
- [Awesomplete](https://leaverou.github.io/awesomplete/) - Ultra lightweight autocomplete engine with no dependencies
- [Olly.js](https://github.com/abeisgreat/Olly.js) - Rich snippets engine
2015-05-13 12:35:17 +00:00
### Saving
- [localStorage Bridge](https://github.com/krasimir/lsbridge) - A really cool library that lets you send & recieve messages via localStorage. Useful to let all the pages a user has open communicate with each other.
2015-05-13 20:02:55 +00:00
## Media
- [audiosynth](http://keithwhor.github.io/audiosynth/) - A wonderfully simple (albeit underdocumented) library for synthesising notes from various instruments. Not the most powerful, but easy to use.
2015-05-13 20:02:55 +00:00
2015-06-01 08:03:00 +00:00
## Display Effects
- [ramjet](http://www.rich-harris.co.uk/ramjet/) - Lets you transform one DOM element into another with a smooth transisition
2015-05-14 11:20:31 +00:00
## Popup Boxes
- [NanoModal](https://github.com/kylepaulsen/NanoModal) - Display those modals dialogs easily
2015-05-21 14:20:03 +00:00
- [basicContext](https://github.com/electerious/basicContext) - Create custom right click menus easily
2015-05-14 11:20:31 +00:00
2015-04-20 18:59:24 +00:00
## Progress bars
- [Mprogress.js](https://lightningtgc.github.io/MProgress.js/) - A progress bar based on material design
- [ProgressBar.js](https://kimmobrunfeldt.github.io/progressbar.js/) - Another progress bar library
2015-04-22 17:50:10 +00:00
- [Elevator.js](http://tholman.com/elevator.js/) - An awesome script that "solves those awkward scroll to top moments the old fashioned way" :D
2015-04-20 18:59:24 +00:00
2015-05-10 08:43:56 +00:00
- [layzr.js](https://github.com/callmecavs/layzr.js) - A lightweight library that makes lazy loading ridiculously easy
2015-04-20 18:59:24 +00:00
## Input tools
- [Keypress](https://dmauro.github.io/Keypress/) - Simple but powerful keyboard input library
- [Squire](https://neilj.github.io/Squire/) - Turn a simple `<textarea />` into a rich text editor
2015-04-24 06:19:23 +00:00
- [Dragula](https://github.com/bevacqua/dragula) - Super simple drag & drop
2015-05-18 06:39:38 +00:00
- [Insignia](http://bevacqua.github.io/insignia/) - Easy tag input
2015-04-20 18:59:24 +00:00
## Services and tools
### Services
2015-04-20 18:59:24 +00:00
- [js.org](http://dns.js.org/) - Free subdomains for Javascript projects
### Tools
2015-04-20 18:59:24 +00:00
- [Regexper](http://regexper.com/) - Regular Expression visualiser
2015-04-27 08:51:10 +00:00
- [Transformy](https://www.transformy.io/#/app) - Not _strictly_ javascript, but still awesome. Change the format of a list of things by typing in a simple example of what you want it to look like.
2015-05-01 06:47:08 +00:00
- [vorlon.js](http://www.vorlonjs.com/) - Awesome looking remote debugger
- [keyCode Test Page](http://www.asquare.net/javascript/tests/KeyCode.html) - A test page that shows you the keyCode of the keys you press
2015-05-25 19:09:34 +00:00
- [jscompress](http://jscompress.com/) - A simple no-fuss javascript compressor
2015-05-14 10:10:50 +00:00
2015-05-20 06:53:18 +00:00
## References & Tutorials
2015-05-14 10:10:50 +00:00
- [RGraph HTML5 Canvas Reference](http://www.rgraph.net/reference/index.html) - A good HTML5 canvas reference with examples
2015-05-24 17:47:26 +00:00
- [RegexOne](http://regexone.com/) - A good reguar expression tutorial with practical examples and tests
2015-05-20 07:02:16 +00:00
- [Javascript Scope Quiz](http://madebyknight.com/javascript-scope/) - A small quiz / tutorial to help you understand scope in Javascript