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

nimnjs

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nimnjs - npm Package Compare versions

Comparing version 1.2.2 to 1.3.0

2

.vscode/launch.json

@@ -10,3 +10,3 @@ {

"args": [
"${workspaceFolder}/tests/datahandler_test.js"
"${workspaceFolder}/test/encode_test.js"
],

@@ -13,0 +13,0 @@ "internalConsoleOptions": "openOnSessionStart"

{
"name": "nimnjs",
"version": "1.2.2",
"description": "Schema aware compression of JS object/JSON data",
"version": "1.3.0",
"description": "Schema aware compression of JS object/JSON data. 60% more compressed than json",
"main": "src/nimn.js",

@@ -18,6 +18,15 @@ "scripts": {

"parse",
"format"
"format",
"msgpack"
],
"author": "Amit Gupta (https://github.com/amitguptagwl)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nimndata/nimnjs-node.git"
},
"bugs": {
"url": "https://github.com/nimndata/nimnjs-node/issues"
},
"homepage": "https://github.com/nimndata/nimnjs-node",
"dependencies": {

@@ -24,0 +33,0 @@ "nimn-date-parser": "^1.0.0",

# nimnjs-node
JS implementation of nimn specification. Highly Compressed JS object/JSON.
JS implementation of nimn specification. Highly Compressed JS object/JSON. 60% or more compressed than JSON, 40% or more compressed than msgpack
[![Code Climate](https://codeclimate.com/github/nimndata/nimnjs-node//badges/gpa.svg)](https://codeclimate.com/github/nimndata/nimnjs-node/)
[![Known Vulnerabilities](https://snyk.io/test/github/nimndata/nimnjs-node//badge.svg)](https://snyk.io/test/github/nimndata/nimnjs-node/)

@@ -10,2 +9,5 @@ [![Travis ci Build Status](https://travis-ci.org/nimndata/nimnjs-node.svg?branch=master)](https://travis-ci.org/nimndata/nimnjs-node/)

<a href="https://www.patreon.com/bePatron?u=9531404" data-patreon-widget-type="become-patron-button"><img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" alt="Become a Patron!" width="200" /></a>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KQJAX48SPUKNC"> <img src="https://www.paypalobjects.com/webstatic/en_US/btn/btn_donate_92x26.png" alt="Stubmatic donate button"/></a>
<img align="right" src="static/img/nimnjs-logo.png" />

@@ -101,2 +103,5 @@

- **[imglab](https://github.com/NaturalIntelligence/imglab)** : Web based tool to label images for object. So that they can be used to train dlib or other object detectors. You can integrate 3rd party libraries for fast labeling.
- **[अनुमार्गक (anumargak)](https://github.com/NaturalIntelligence/anumargak)** : The fastest router for node web servers.
- [Stubmatic](https://github.com/NaturalIntelligence/Stubmatic) : A stub server to mock behaviour of HTTP(s) / REST / SOAP services.

@@ -106,2 +111,2 @@ - **[fastify-xml-body-parser](https://github.com/NaturalIntelligence/fastify-xml-body-parser/)** : Fastify plugin / module to parse XML payload / body into JS object using fast-xml-parser.

- [Grapes](https://github.com/amitguptagwl/grapes) : Flexible Regular expression engine which can be applied on char stream. (under development)
- [fast XML Parser](https://github.com/amitguptagwl/fast-xml-parser) : Fastest pure js XML parser for xml to js/json and vice versa. And XML validation.
- [fast XML Parser](https://github.com/amitguptagwl/fast-xml-parser) : Fastest pure js XML parser for xml to js/json and vice versa. And XML validation.

@@ -11,12 +11,15 @@ var char = require("./util").char;

const chars= {
nilChar : char(254),
missingChar : char(200),
nilPremitive : char(176),
missingPremitive : char(201),
emptyChar : char(177),
emptyValue: char(178),
boundryChar : char(186),
arrayEnd: char(197),
nilChar : char(176),
missingChar : char(201),
nilPremitive : char(175),
missingPremitive : char(200),
emptyChar : char(178),
emptyValue: char(177),//empty Premitive
boundryChar : char(179),
objStart: char(198),
arrStart: char(199)
arrStart: char(204),
arrayEnd: char(185),
}

@@ -23,0 +26,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