Skip to content

Instantly share code, notes, and snippets.

@jbpros
Created September 15, 2011 20:43
Show Gist options
  • Save jbpros/1220427 to your computer and use it in GitHub Desktop.
Save jbpros/1220427 to your computer and use it in GitHub Desktop.
Error: No wrapper for core module crypto
[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]
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