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

winrt-net

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

winrt-net - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

32

package.json
{
"name": "winrt-net",
"version": "1.0.3",
"version": "1.0.4",
"description": "WinRT (Windows App) wrapper for node net module",
"author": "Mike Kovařík <kenr.mk@gmail.com>",
"license": "ISC",
"license": "MIT",
"repository": {

@@ -61,31 +61,3 @@ "type": "git",

}
},
"jspm": {
"name": "winrt-net",
"dependencies": {
"buffer": "github:jspm/nodelibs-buffer@^0.1.0",
"events": "github:jspm/nodelibs-events@^0.1.1"
},
"devDependencies": {},
"peerDependencies": {
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
"child_process": "github:jspm/nodelibs-child_process@^0.2.0-alpha",
"constants": "github:jspm/nodelibs-constants@^0.2.0-alpha",
"crypto": "github:jspm/nodelibs-crypto@^0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
"stream": "github:jspm/nodelibs-stream@^0.1.0",
"string_decoder": "github:jspm/nodelibs-string_decoder@^0.2.0-alpha",
"util": "github:jspm/nodelibs-util@^0.2.0-alpha",
"vm": "github:jspm/nodelibs-vm@^0.2.0-alpha"
},
"overrides": {
"npm:inherits@2.0.1": {
"ignore": [
"test.js"
]
}
}
}
}

4

README.md

@@ -14,3 +14,3 @@ # winrt-net

#### Why?
JSPM has it's own module that get's installed whenever you or your dependecy uses `net` module. And it does next to nothing because browsers don't do TCP.
JSPM has it's own module that gets installed whenever you or your dependecy uses `net` module. And it does next to nothing because browsers don't do TCP.
#### how?

@@ -42,5 +42,3 @@ In JSPM config file there is property `map` with names and mappings of all modules. This is an example of JSPM 0.17 `jspm.config.js`

import net from 'net';
import net from 'net';
var port = 22112;

@@ -47,0 +45,0 @@

@@ -28,4 +28,2 @@ import {EventEmitter} from 'events';

_handle = null;
// 35536 is max size of data the chunk could read from stream at once
// (it's not just a random value. Was measured with Node.js)
_maxChunkLength = 65536; // 64kB

@@ -32,0 +30,0 @@

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