New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jeju

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jeju - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2-alpha.1

README.md

23

index.js

@@ -1,5 +0,22 @@

module.exports = function() {
// interested in the project? get in touch.
return "jeju is coming soon";
// Until we figure out how to build native v8 bindings at compile time, for now
// let's bundle the binary tool and just shell to it so people can test.
const util = require('util');
const execFile = util.promisify(require('child_process').execFile);
// Return a promise that resolves to an Object with stdout and stderr
// properties.
//
// In case of an error (including any error resulting in an exit code other than
// 0), a rejected promise is returned, with the same error object given in the
// callback, but with an additional two properties stdout and stderr.
//
// We can use "pretty" as the default formatter, jeju is smart enough to change
// that to something reasonable if jobs > 1.
function run(format = "pretty", workers = 1) {
const args = [`-format=${format}`, `-jobs=${workers}`];
return execFile('jeju', args);
}
module.exports = {
run: run
};

7

package.json
{
"name": "jeju",
"version": "0.0.1",
"description": "Jeju is coming soon",
"version": "0.0.2-alpha.1",
"description": "Javascript bindings for the Jeju BDD testing library",
"bugs": "https://github.com/mroth/jeju-js/issues",
"main": "index.js",
"keywords": [
"jeju"
"jeju", "cli", "testing", "bdd"
],

@@ -9,0 +10,0 @@ "author": "Matthew Rothenberg (https://github.com/mroth)",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc