You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

nanoid

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.1.16 to 3.1.17

index.dev.js

5

CHANGELOG.md
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
## 3.1.17
* Fix `esbuild` support.
## 3.1.16
* Speed up Nano ID 4 times (by Peter Boyer).
* Speeded up Nano ID 4 times (by Peter Boyer).

@@ -7,0 +10,0 @@ ## 3.1.15

30

package.json
{
"name": "nanoid",
"version": "3.1.16",
"version": "3.1.17",
"description": "A tiny (108 bytes), secure URL-friendly unique string ID generator",

@@ -29,3 +29,6 @@ "keywords": [

".": {
"browser": "./index.browser.js",
"browser": {
"development": "./index.dev.js",
"production": "./index.prod.js"
},
"require": "./index.cjs",

@@ -38,18 +41,29 @@ "import": "./index.js",

"./async": {
"browser": "./async/index.browser.js",
"browser": {
"development": "./async/index.dev.js",
"production": "./async/index.prod.js"
},
"require": "./async/index.cjs",
"import": "./async/index.js"
},
"./url-alphabet/package.json": "./url-alphabet/package.json",
"./url-alphabet": {
"browser": {
"development": "./url-alphabet/index.dev.js",
"production": "./url-alphabet/index.prod.js"
},
"require": "./url-alphabet/index.cjs",
"import": "./url-alphabet/index.js"
},
"./non-secure/package.json": "./non-secure/package.json",
"./non-secure": {
"browser": {
"development": "./non-secure/index.dev.js",
"production": "./non-secure/index.prod.js"
},
"require": "./non-secure/index.cjs",
"import": "./non-secure/index.js"
},
"./url-alphabet/package.json": "./url-alphabet/package.json",
"./url-alphabet": {
"require": "./url-alphabet/index.cjs",
"import": "./url-alphabet/index.js"
},
"./index.d.ts": "./index.d.ts"
}
}

@@ -13,3 +13,3 @@ # Nano ID

[Size Limit] controls the size.
* **Fast.** It is 40% faster than UUID.
* **Fast.** It is 60% faster than UUID.
* **Safe.** It uses cryptographically strong random APIs.

@@ -16,0 +16,0 @@ Can be used in clusters.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc