
This is a list intended to introduce new developers to JavaScript (jQuery, Node.js and React) and help experienced developers learn more.
jQuery
jQuery API (Official) | View → |
jQuery Cheatsheet (Devhints) | View → |
jQuery Cheat Sheet (JavaScript Toolbox) | View → |
jQuery Quick API Reference (Óscar Otero) | View → |
jQuery Selectors (DZone) | View → |
jQuery Tutorial – An Ultimate Guide for Beginners (Tutorial Republic) | View → |
jQuery Tutorial for Beginners (LearnCode.academy) | View → |
Learn jQuery Tutorial (javatpoint) | View → |
The Complete jQuery Tutorial (jQuery-Tutorial.net) | View → |
The jQuery Mega Cheat Sheet (Make A Website Hub) | View → |
Node.js
Advanced Node.js Tutorials (RisingStack) | View → |
Complete Node.js CheatSheet (Julien Le Coupanec) | View → |
Node.js Documentation (Official) | View → |
Node.js for Beginners (Tuts+) | View → |
Node.js Refcard (DZone) | View → |
Node.js Tutorials (GitBook) | View → |
Node.js Tutorial For Absolute Beginners (Traversy Media) | View → |
Node.js Tutorial – Step-by-Step Guide For Getting Started (airpair) | View → |
The Node Beginner Book (Manuel Kiessling) | View → |
React
All the fundamental React.js concepts, jammed into this single Medium article (Samer Buna) | View → |
build with react (Paul Shen) | View → |
Learning React.js: Getting Started and Concepts (Scotch) | View → |
React.js Cheatsheet (Devhints) | View → |
React Cheat Sheet (ReactCheatSheet.com) | View → |
React Cheat Sheet (PDF) (ihatetomatoes) | View → |
10 Super-Useful React Components, Libraries & Tools (Speckyboy) | View → |
React JS Crash Course (Traversy Media) | View → |
ReactJS For Beginners (Andrew Ray) | View → |
React Lifecycle Cheatsheet (Monica Olinescu) | View → |
Tutorial: Intro To React (Official) | View → |

Janeth Kent
Licenciada en Bellas Artes y programadora por pasión. Cuando tengo un rato retoco fotos, edito vídeos y diseño cosas. El resto del tiempo escribo en MA-NO WEB DESIGN END DEVELOPMENT.
Related Posts
Validating HTML forms using BULMA and vanilla JavaScript
Today we are going to write about contact forms and how to validate them using JavaScript. The contact form seems to be one of the top features of every basic home…
A FULFILLED PROMISE - Using the FETCH API to make AJAX calls
In this article we talked about what AJAX calls are and how to use them in a traditional way, by using the XMLHttpRequest (XHR) object. In short, thanks to AJAX…
How to use Parallax.js effect on your website
Today, we're going to write about the parallax effect, similar to parallax scrolling, and how to implement it to improve your landing page. In webdev, they say mobile first -…
How to make the website's dark mode persistent with Local Storage, CSS and JS
Recently we wrote about how to do a switchable alternative color mode or theme, a very useful and popular feature to websites. Today’s article is going to be about how…
A Java approach: While loop
Hello everyone and welcome back! After having made a short, but full-bodied, introduction about cycles, today we are finally going to see the first implementations that use what we have called…
Dark Mode on website using CSS and JavaScript
In today’s article we are going to learn how to build pretty much standard these days on the web pages and that is the alternative color mode and switching between…
A Java approach: The Cycles - Introduction
Hello everyone and welcome back! Until now, we have been talking about variables and selection structures, going to consider some of the fundamental aspects of these two concepts. Theoretically, to…
A Java Approach: Selection Structures - Use Cases
Hello everyone and welcome back! Up to now we have been concerned to make as complete an overview as possible of the fundamental concepts we need to approach the use…
JavaScript: Spread and Rest operators
In today’s article we are going to talk about one of the features of the ES6 version(ECMAScript 2015) of JavaScript which is Spread operator as well as Rest operator. These features…
A Java approach: boolean variables
The previous time, we talked extensively about Boolean variables, trying to outline the main operations that can be carried out at a practical level. Of all the cases examined, we have…
A Java approach: condtional structures
Hello everyone and welcome back! The previous times we have introduced the concept of variable, trying to define some basic concepts about it. However, some situations suggest that the concept of…
Hashmap: hashing, collisions and first functions
Today we are going to study some concepts closely related to hashmaps. The concepts we are going to see are hashing and collisions. Hashing The idea of hashing with chaining is to…