Skip to content

Instantly share code, notes, and snippets.

@rajikaimal
Created December 7, 2015 04:05
Show Gist options
  • Select an option

  • Save rajikaimal/d31f4569aa41a0749b1c to your computer and use it in GitHub Desktop.

Select an option

Save rajikaimal/d31f4569aa41a0749b1c to your computer and use it in GitHub Desktop.
ES6 import
//es5 with require
var express = require('express');
var app = express();
//es6 import
import express from 'express';
//then express is available as a variable
var app = express();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment