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

repl-it

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

repl-it - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

6

cli.js

@@ -5,2 +5,4 @@ #!/usr/bin/env node

var fs = require('fs');
var path = require('path');
var minimist = require('minimist');

@@ -12,3 +14,3 @@ var replit = require('./');

if(argv.help || argv.h){
return fs.createReadStream('usage.txt').pipe(process.stdout);
return fs.createReadStream(path.join(__dirname, 'usage.txt')).pipe(process.stdout);
}

@@ -21,2 +23,2 @@

replit(opts);
replit(opts);

@@ -13,4 +13,4 @@ 'use strict';

return new Replit(opts);
}
}
this.opts = opts;

@@ -35,3 +35,6 @@ var replInstance = this;

console.log('Main package loaded as ' + displayName);
if(this.opts.verbose){
console.log('Main package loaded as ' + displayName);
}
mainPackageLoaded = true;

@@ -86,3 +89,3 @@ };

var packages;
try {

@@ -89,0 +92,0 @@ data = JSON.parse(data);

{
"name": "repl-it",
"version": "2.0.0",
"version": "2.0.1",
"description": "Loads all the packages in your package.json and creates a repl for you",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -6,3 +6,1 @@ Usage: repl-it [-v] [-l]

-l, --loadmain Load the main file referenced by package.json by default
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