kalvn's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 10 / 18
345 results tagged javascript  ✕
Use $ & $$ Instead of document.querySelector/All in JavaScript without jQuery - DEV Community 👩‍💻👨‍💻 https://dev.to/mrahmadawais/use-instead-of-document-queryselector-all-in-javascript-without-jquery-3ef1?ref=dailydevlinks.com
05/04/2019 11:43:11

Une petite astuce pour utiliser $ et $$ comme alias pour document.querySelector et document.querySelectorAll.

const $ = document.querySelector.bind(document);
const $$ = document.querySelectorAll.bind(document);

// Change the background color of a class.
$('.class').style.background="#BADA55";

// Change the inner HTML of an ID.
$('#id').innerHTML="<span>Cool beans!</span>";

// Select all images on the webpage.
$$('img')

// Print the image addresses for all the images on a webpage.
$$('img').forEach(img => console.log(img.src))
JavaScript astuce
JavaScript: Array Methods Cheatsheet – Tim Han – Medium https://medium.com/@timhancodes/javascript-array-methods-cheatsheet-633f761ac250?ref=dailydevlinks.com
19/03/2019 20:32:18
JavaScript cheatsheet tableau
JavaScript naming conventions: do’s and don’ts – freeCodeCamp.org https://medium.freecodecamp.org/javascript-naming-conventions-dos-and-don-ts-99c0e2fdd78a?ref=dailydevlinks.com
19/03/2019 14:22:18

Quelques conventions de nommage en JavaScript qu'il est bon de rappeler.

JavaScript convention nommage
gpu.js - GPU Accelerated JavaScript https://gpu.rocks/
07/03/2019 09:16:23

Une lib qui fait tourner votre code JavaScript sur le GPU pour de meilleures performances. Pas testé.

Via https://korben.info/gpu-js-faire-tourner-du-js-en-utilisant-le-gpu-de-la-machine.html

gpu lib JavaScript
The State of JavaScript 2018: Home https://2018.stateofjs.com/
06/03/2019 17:46:59

Des statistiques intéressantes sur le Javascript en 2018 (frameworks, etc.)

JavaScript framework comparatif
Uppy File Uploader https://uppy.io/
26/02/2019 17:10:46

Une librairie d'upload de fichier en JavaScript.

JavaScript lib upload fichier
ES5 to ESNext — here’s every feature added to JavaScript since 2015 https://medium.freecodecamp.org/es5-to-esnext-heres-every-feature-added-to-javascript-since-2015-d0c255e13c6e
25/02/2019 21:30:28

Un article très complet qui détaille un peu l'historique d'ECMAScript et les nouveautés depuis ES2015.

ecmascript JavaScript
Trix: A rich text editor for everyday writing https://trix-editor.org/
24/02/2019 16:00:04

Un éditeur de texte en HTML.

lib JavaScript editeur texte
Laravel Mix https://laravel-mix.com/
12/02/2019 14:05:56

Une librairie d'abstraction de Webpack faite par l'équipe qui gère Laravel.

C'est très pratique :)

An elegant wrapper around Webpack for the 80% use case.

laravel webpack vuejs lib JavaScript
Home | MiniSearch https://lucaong.github.io/minisearch/
09/02/2019 13:39:16

Un moteur de recherche "full text".

MiniSearch is a tiny but powerful in-memory fulltext search engine for JavaScript. It is respectful of resources, and it can comfortably run both in Node and in the browser.

moteurderecherche JavaScript
Quill - Your powerful rich text editor https://quilljs.com/
07/02/2019 21:43:42

Un éditeur de texte pour le web.

JavaScript lib texte editeur
RelaxedJS/ReLaXed at stackshare https://github.com/RelaxedJS/ReLaXed?ref=stackshare
31/01/2019 21:50:44

Un outil pour faire un peu comme LaTeX mais avec des technos web.

Il y au quelques mois je cherchais un outil de ce genre parce que Word me sortait par les narines. Il faudra vraiment que je m'y essaye !

latex JavaScript lib pdf document cv
A guide to JavaScript variable hoisting 🚩 with let and const https://medium.freecodecamp.org/what-is-variable-hoisting-differentiating-between-var-let-and-const-in-es6-f1a70bb43d
31/01/2019 10:16:39

Un article intéressant sur la différence entre var letet const.

JavaScript
Home - Document https://matvp91.github.io/indigo-player/#/
18/01/2019 15:19:48

Un lecteur vidéo JavaScript.

JavaScript video player lib
2018 JavaScript Rising Stars https://risingstars.js.org/2018/en/
15/01/2019 17:30:41

Vue.js est le projet obtenant la meilleure progression en matière d'étoile sur Github depuis 3 années consécutives !

vuejs framework JavaScript github
ganlanyuan/tiny-slider: Vanilla javascript slider for all purposes. https://github.com/ganlanyuan/tiny-slider
26/11/2018 20:36:02

Un slider/carousel JavaScript qui a l'air plutôt léger et pourtant très riche en options.

JavaScript carousel
autoComplete.js - Vanilla Javascript https://www.tarekraafat.com/dev/projects/autoComplete/
21/11/2018 20:57:48

Une lib d'autocomplétion JavaScript. Le code est là.

lib JavaScript autocomplete
Highway - A Modern Javascript Transitions Manager https://dogstudio.github.io/highway/
05/11/2018 14:15:07

Une lib JS pour donner des airs de SPA à votre site web.

Bon par contre il faut bien comprendre comment ça altère la navigation pour éviter les soucis (le <head> n'est chargé qu'au début).

JavaScript lib transition
Beer Slider Responsive & Accessible Before-After Slider – Demo – PEPSized https://pepsized.com/demo/beer-slider-responsive-accessible-before-after-slider-demo/
05/11/2018 13:35:39

Un slider BEfore/aftER léger en Javascript. J'aime bien le nom :)

slider JavaScript lib
JavaScript Pro Tips - Code This, NOT That - YouTube https://www.youtube.com/watch?v=Mus_vwhTCq0
22/10/2018 17:52:17
thumbnail

Pas mal de petites astuces pour faire du Javascript moderne.

JavaScript astuce
page 10 / 18
3896 links, including 129 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn