https://github.com/TimothyDJones/awesome-laravel
Демо
https://github.com/laravelio/pastebin
Numscrubber.js - скрипт изменения значения в input путем перетаскивания
https://github.com/mburakerman/numscrubberjs
henrygd/bigpicture - легкий js просмотрщик изображений и видео
https://github.com/henrygd/bigpicture
marcuswestin/store.js - js скрипт работы с локальным хранилищем
// Store current user
store.set('user', { name:'Marcus' })
// Get current user
store.get('user')
// Remove current user
store.remove('user')
// Clear all keys
store.clearAll()
// Loop over all stored values
store.each(function(value, key) {
console.log(key, '==', value)
})
https://github.com/marcuswestin/store.js