Created
September 15, 2011 20:43
-
-
Save jbpros/1220427 to your computer and use it in GitHub Desktop.
Error: No wrapper for core module crypto
This file contains 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
[email protected] /Users/jbpros/Projects/cucumber-js | |
├─┬ [email protected] | |
│ ├── [email protected] | |
│ ├── [email protected] | |
│ ├─┬ [email protected] | |
│ │ ├─┬ [email protected] | |
│ │ │ ├── [email protected] | |
│ │ │ └── [email protected] | |
│ │ └─┬ [email protected] extraneous | |
│ │ └── UNMET DEPENDENCY seq >=0.1.7 | |
│ ├── [email protected] | |
│ ├─┬ [email protected] | |
│ │ └── [email protected] | |
│ └── [email protected] | |
├─┬ [email protected] | |
│ ├── [email protected] | |
│ └── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├─┬ [email protected] | |
│ ├── [email protected] | |
│ └── [email protected] | |
├── [email protected] | |
├─┬ [email protected] | |
│ └── [email protected] | |
├── [email protected] | |
└── [email protected] |
This file contains 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 connect = require('connect'); | |
var server = connect.createServer(); | |
server.use(connect.static(__dirname)); | |
server.use(require('browserify')({ | |
require: {'cucumber': './lib/cucumber.js', | |
'./gherkin/lexer/en': 'gherkin/lib/gherkin/lexer/en'}, | |
ignore: ['./cucumber/cli'] | |
})); | |
server.listen(9797); | |
console.log('Listening on port 9797...'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment