Skip to content

Instantly share code, notes, and snippets.

View TaniaAlex's full-sized avatar

TaniaAlex TaniaAlex

View GitHub Profile

Commands when setting up Babel

  1. Create an NPM project package.json file
npm init --yes
  1. Add babel-cli and babel-preset-env to the project
npm i --save-dev babel-cli babel-preset-env
@TaniaAlex
TaniaAlex / index.html
Created November 29, 2017 19:26 — forked from codecademydev/index.html
Codecademy export
<!DOCTYPE html>
<html>
<head>
<title>Sole Shoes</title>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700' rel='stylesheet'>
<link rel='stylesheet' type='text/css' href='css/styles.css'>
</head>