I no longer mantain this list. There are lots of other very comprehensive JavaScript link lists out there. Please see those, instead (Google "awesome JavaScript" for a start).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var path = require('path'); | |
| var Nightmare = require('nightmare'); | |
| var should = require('chai').should(); | |
| describe('Nightmare demo', function () { | |
| this.timeout(15000); // Set timeout to 15 seconds, instead of the original 2 seconds | |
| var url = 'http://localhost:3000'; | |
| describe('Start page', function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Place npm packages in your home folder without using sudo | |
| # The lazy approach to installing cli npm programs requires sudo (root) access: | |
| # $ sudo npm install -g somenpmpackage | |
| # Of course, I do not recommend installing npm packages with sudo unless it's required. | |
| # This is how I install CLI tools from npm without sudo: | |
| # $ lib | |
| # $ npm install --save somenpmpackage |
OlderNewer