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

tsun

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsun - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

5

bin/src/repl.js
"use strict";
var readline = require('node-color-readline');
var readlineTTY = require('node-color-readline');
var readlineNoTTY = require('readline');
var util = require('util');

@@ -13,2 +14,4 @@ var vm = require('vm');

require('colors');
// node-color-readline blows up in non-TTY envs
var readline = process.stdout.isTTY ? readlineTTY : readlineNoTTY;
var options = require('optimist')

@@ -15,0 +18,0 @@ .alias('f', 'force')

2

package.json
{
"name": "tsun",
"preferGlobal": true,
"version": "0.3.0",
"version": "0.3.1",
"description": "TSUN: a repl for TypeScript Upgraded Node",

@@ -6,0 +6,0 @@ "bin": "./bin/tsun",

@@ -9,3 +9,3 @@ # TSUN - TypeScript Upgraded Node

===
* TS 1.8 support
* TS 2.0 support
* Keyword highlight

@@ -12,0 +12,0 @@ * Tab-completion support

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