/* * FEATHERS.JS CHEATSHEET * https://docs.feathersjs.com/api/readme.html * * 1. CORE: Feathers core functionality. * 2. TRANSPORT: Expose a Feathers application as an API server. * 3. CLIENT: More details on …
programmerdude
-
-
/* * SAILS.JS CHEATSHEET * REFERENCE: https://sailsjs.com/documentation/reference * CONCEPTS: https://sailsjs.com/documentation/concepts * APP STRUCTURE: https://sailsjs.com/documentation/anatomy * * 1. APPLICATION * 2. BLUEPRINT API * 3. COMMAND-LINE INTERFACE * 4. CONFIGURATION * …
-
/* * SYNOPSIS * http://nodejs.org/api/synopsis.html */ var http = require(‘http’); // An example of a web server written with Node which responds with ‘Hello World’. // To run the server, …
-
/* ******************************************************************************************* * GLOBAL CONFIG * Vue.config is an object containing Vue’s global configurations. * You can modify its properties listed below before bootstrapping your application. * https://vuejs.org/v2/api/#Global-Config * …
-
/* ******************************************************************************************* * REACT.JS CHEATSHEET * DOCUMENTATION: https://reactjs.org/docs/ * FILE STRUCTURE: https://reactjs.org/docs/faq-structure.html * ******************************************************************************************* */ “` npm install –save react // declarative and flexible JavaScript library for building UI …
-
/* * ———————– * Ember.js Cheatsheet * ———————– * * Docs: https://guides.emberjs.com/ * Quick start: https://guides.emberjs.com/current/getting-started/quick-start/ * * Table of contents * ——————- * 01 | Installation * 02 …
-
A collection of free JavaScript related books in a variety of formats There is plenty of free information out there to get you started and Listings Basic JavaScript for the …
-
The following operators are known as JavaScript logical operators. Logical operators perform logical operations and return a boolean value, either true or false. ! (Logical NOT) || (Logical OR) && …
-
Assignment operators assign values to JavaScript variables. Operator Actual Expression Description a = b a = b Assigns the value of b to a. a += b a = a …
-
The JavaScript comparison operator compares the two operands. The following table illustrates the JavaScript comparison operators: Operator Description Example == Is equal to 10==20 = false === Identical (equal and …