Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

espruino

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

espruino - npm Package Compare versions

Comparing version 0.1.47 to 0.1.48

6

bin/espruino-cli.js

@@ -658,3 +658,7 @@ #!/usr/bin/env node

var ideServer = undefined;
process.stdin.setRawMode(true);
// Set raw mode to allow Ctrl-C/etc, but Git Bash for Windows doesn't have support (#161)
if (process.stdin.setRawMode)
process.stdin.setRawMode(true);
else
log("No process.stdin.setRawMode() - Ctrl-C/etc won't function correctly");
Espruino.Core.Serial.startListening(function(data) {

@@ -661,0 +665,0 @@ data = new Uint8Array(data);

2

package.json
{
"name": "espruino",
"version": "0.1.47",
"version": "0.1.48",
"description": "Command Line Interface and library for Communications with Espruino JavaScript Microcontrollers",

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

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