Skip to content

Instantly share code, notes, and snippets.

View memee's full-sized avatar

Maciej Maciaszek memee

  • DNA Technology
  • Lodz
View GitHub Profile
@memee
memee / headless.md
Created July 19, 2016 07:19 — forked from addyosmani/headless.md
So, you want to run Chrome headless.

#If you're on Ubuntu or working with a Linux VM...

Step 1: Install the Ubuntu dependencies needed:

SSH into your server as a root or do sudo -i.

Then install necessary software:

apt-get update
@memee
memee / package.json
Created November 3, 2015 15:43 — forked from addyosmani/package.json
npm run-scripts boilerplate
{
"name": "my-app",
"version": "1.0.0",
"description": "My test app",
"main": "src/js/index.js",
"scripts": {
"jshint:dist": "jshint src/js/*.js'",
"jshint": "npm run jshint:dist",
"jscs": "jscs src/*.js",
"browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js",