Skip to content

Instantly share code, notes, and snippets.

View UpperLEFTY's full-sized avatar
:octocat:
https://soundcloud.com/upper-lefty/sets/sub_pop-vs-indie-rock

Essence Alexander UpperLEFTY

:octocat:
https://soundcloud.com/upper-lefty/sets/sub_pop-vs-indie-rock
View GitHub Profile

Interview Questions

Node.js

Q1: What do you mean by Asynchronous API? ☆☆

Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.

Source: tutorialspoint.com

@chantastic
chantastic / gulpfile.js
Last active October 13, 2023 03:20
This a script for a Full Stack Talk, given 3/13/14. Feel free to follow along at your own pace.
var gulp = require('gulp');
var coffee = require('gulp-coffee');
gulp.task('scripts', function () {
gulp.src('src/*.coffee')
.pipe(coffee())
.pipe(gulp.dest('./'));
});
gulp.task('watch', function () {