tamnd commited on
Commit
60304db
·
verified ·
1 Parent(s): a9afbd6

Add 126,392 packages (217,266 total, @haloriyan /grid through @jeongshin /ts-utils)

Browse files
README.md CHANGED
@@ -74,7 +74,7 @@ configs:
74
 
75
  This dataset contains a comprehensive snapshot of the [npm registry](https://www.npmjs.com), the default package manager for Node.js and the largest software package registry in the world. npm hosts millions of packages and serves billions of downloads every week. If you have ever run `npm install`, you have used the registry that this dataset mirrors.
76
 
77
- The archive currently contains **90,874 packages** with **2,819,070 published versions**, maintained by **37,537 unique maintainers**. Every field needed to recreate the npmjs.com package detail page is included: core metadata, all historical versions, maintainer lists, keyword tags, dependency graphs, download statistics, and search quality scores.
78
 
79
  We built this dataset because npm registry data is scattered across four separate APIs (registry, replication, downloads, search), each with different rate limits, pagination schemes, and response formats. Researchers studying the JavaScript ecosystem typically need to build their own crawlers and deal with these complexities from scratch. Having everything in a single, queryable Parquet archive makes it straightforward to analyze the JavaScript ecosystem at scale. No API keys, no rate limits, no pagination.
80
 
@@ -100,31 +100,31 @@ data/
100
 
101
  | Table | Rows | Description |
102
  |-------|-----:|-------------|
103
- | packages | 90,874 | One row per package: name, description, license, readme, author, types, scores |
104
- | versions | 2,819,070 | Every published version: entry points, dist info, engine requirements |
105
- | maintainers | 182,667 | Package-maintainer relationships |
106
- | keywords | 265,410 | Package-keyword relationships |
107
- | dependencies | 973,835 | Runtime, dev, peer, optional, and bundled dependencies |
108
  | downloads | 0 | Point download totals (last-day, last-week, last-month) |
109
  | download_days | 0 | Daily download counts for sparkline charts |
110
  | version_downloads | 0 | Per-version download breakdown |
111
 
112
- **Versions per package:** median 4, p90 45, p99 494, max 16,354 (average 32.3).
113
  Most packages ship only a handful of releases, but some heavily maintained libraries have hundreds.
114
 
115
- **ESM adoption:** 24.0% of packages set `"type": "module"` in their package.json.
116
 
117
- **TypeScript:** 43.7% of packages bundle their own type declarations.
118
 
119
- **README coverage:** 91.5% of packages include a README.
120
 
121
  ## Crawl in progress
122
 
123
- This dataset is being actively built. Our crawler is working its way through the entire npm registry — all 3,916,660 known packages — fetching full metadata, every published version, maintainer lists, keywords, and dependency graphs for each one.
124
 
125
- So far we have crawled **465,385** of **3,916,660** packages (11.9%), with **3,451,275** remaining. The crawler is running at roughly **23 packages per second**.
126
 
127
- At the current pace, we expect the initial crawl to finish around **Apr 13, 2026 02:09 UTC**. Once complete, this notice will disappear and the dataset will reflect the full registry. We publish incremental snapshots every 30 minutes, so the data you see here is already usable — it just isn't the whole picture yet.
128
 
129
  ## Ecosystem snapshot
130
 
@@ -133,16 +133,16 @@ At the current pace, we expect the initial crawl to finish around **Apr 13, 2026
133
  The npm ecosystem leans heavily on permissive licenses. MIT dominates by a wide margin, followed by ISC and Apache-2.0. A small but notable number of packages ship without any license at all, which can create compliance headaches for downstream consumers.
134
 
135
  ```
136
- MIT ██████████████████████████████ 44,547
137
- ISC ██████████████ 21,211
138
- Apache-2.0 ███ 4,360
139
- OFL-1.1 1,975
140
- UNLICENSED █ 1,022
141
- SEE LICENSE IN README.md █ 790
142
- AGPL-3.0-or-later 429
143
- BSD-3-Clause 428
144
- GPL-3.0 396
145
- Commercial 339
146
  ```
147
 
148
 
@@ -151,21 +151,21 @@ Commercial 339
151
  Keywords give a rough map of what people are building. React, TypeScript, and Node.js dominate the tag cloud, which tracks closely with the frameworks and tools that drive the most npm traffic.
152
 
153
  ```
154
- react ██████████████████████████████ 3,270
155
- typescript ██████████████████████████████ 3,223
156
- font ██████████████████████████ 2,862
157
- css ███████████████████████ 2,534
158
- web ██████████████████████ 2,401
159
- sass ████████████████████ 2,158
160
- front-end ███████████████████ 2,124
161
- fontsource ███████████████████ 2,033
162
- google fonts ███████████████████ 2,032
163
- font family ███████████████████ 2,032
164
- typeface ███████████████████ 2,027
165
- variable ██████████████████ 2,015
166
- cli ██████████████ 1,525
167
- types █████████████ 1,429
168
- TypeScript █████████████ 1,392
169
  ```
170
 
171
 
@@ -174,11 +174,11 @@ TypeScript █████████████ 1,392
174
  The `dependencies` table covers all five npm dependency types. Runtime dependencies make up the bulk, but devDependencies are also heavily represented since the crawl includes every version of every package.
175
 
176
  ```
177
- dev ██████████████████████████████ 539,678
178
- runtime █████████████████████ 372,342
179
- peer ███ 59,028
180
- optional 2,172
181
- bundled 615
182
  ```
183
 
184
 
@@ -610,4 +610,4 @@ This is an independent community mirror. It is not affiliated with or endorsed b
610
 
611
  For questions, feedback, or issues, please open a discussion on the [Community tab](https://huggingface.co/datasets/open-index/open-npm/discussions).
612
 
613
- *Last updated: 2026-04-11 09:06 UTC*
 
74
 
75
  This dataset contains a comprehensive snapshot of the [npm registry](https://www.npmjs.com), the default package manager for Node.js and the largest software package registry in the world. npm hosts millions of packages and serves billions of downloads every week. If you have ever run `npm install`, you have used the registry that this dataset mirrors.
76
 
77
+ The archive currently contains **259,466 packages** with **5,604,032 published versions**, maintained by **82,237 unique maintainers**. Every field needed to recreate the npmjs.com package detail page is included: core metadata, all historical versions, maintainer lists, keyword tags, dependency graphs, download statistics, and search quality scores.
78
 
79
  We built this dataset because npm registry data is scattered across four separate APIs (registry, replication, downloads, search), each with different rate limits, pagination schemes, and response formats. Researchers studying the JavaScript ecosystem typically need to build their own crawlers and deal with these complexities from scratch. Having everything in a single, queryable Parquet archive makes it straightforward to analyze the JavaScript ecosystem at scale. No API keys, no rate limits, no pagination.
80
 
 
100
 
101
  | Table | Rows | Description |
102
  |-------|-----:|-------------|
103
+ | packages | 259,466 | One row per package: name, description, license, readme, author, types, scores |
104
+ | versions | 5,604,032 | Every published version: entry points, dist info, engine requirements |
105
+ | maintainers | 517,667 | Package-maintainer relationships |
106
+ | keywords | 831,568 | Package-keyword relationships |
107
+ | dependencies | 2,689,665 | Runtime, dev, peer, optional, and bundled dependencies |
108
  | downloads | 0 | Point download totals (last-day, last-week, last-month) |
109
  | download_days | 0 | Daily download counts for sparkline charts |
110
  | version_downloads | 0 | Per-version download breakdown |
111
 
112
+ **Versions per package:** median 2, p90 31, p99 310, max 16,354 (average 22.1).
113
  Most packages ship only a handful of releases, but some heavily maintained libraries have hundreds.
114
 
115
+ **ESM adoption:** 33.0% of packages set `"type": "module"` in their package.json.
116
 
117
+ **TypeScript:** 42.2% of packages bundle their own type declarations.
118
 
119
+ **README coverage:** 81.7% of packages include a README.
120
 
121
  ## Crawl in progress
122
 
123
+ This dataset is being actively built. Our crawler is working its way through the entire npm registry — all 3,915,017 known packages — fetching full metadata, every published version, maintainer lists, keywords, and dependency graphs for each one.
124
 
125
+ So far we have crawled **638,942** of **3,915,017** packages (16.3%), with **3,276,075** remaining. The crawler is running at roughly **29 packages per second**.
126
 
127
+ At the current pace, we expect the initial crawl to finish around **Apr 12, 2026 17:38 UTC**. Once complete, this notice will disappear and the dataset will reflect the full registry. We publish incremental snapshots every 30 minutes, so the data you see here is already usable — it just isn't the whole picture yet.
128
 
129
  ## Ecosystem snapshot
130
 
 
133
  The npm ecosystem leans heavily on permissive licenses. MIT dominates by a wide margin, followed by ISC and Apache-2.0. A small but notable number of packages ship without any license at all, which can create compliance headaches for downstream consumers.
134
 
135
  ```
136
+ MIT ██████████████████████████████ 143,294
137
+ ISC ██████████ 48,275
138
+ Apache-2.0 ███ 12,882
139
+ UNLICENSED 7,662
140
+ OFL-1.1 2,339
141
+ BSD-3-Clause 1,601
142
+ GPL-3.0 1,008
143
+ MPL-2.0 898
144
+ SEE LICENSE IN LICENSE 879
145
+ SEE LICENSE IN README.md 800
146
  ```
147
 
148
 
 
151
  Keywords give a rough map of what people are building. React, TypeScript, and Node.js dominate the tag cloud, which tracks closely with the frameworks and tools that drive the most npm traffic.
152
 
153
  ```
154
+ hfc ██████████████████████████████ 30,273
155
+ hyper-function-component ██████████████████████████████ 30,273
156
+ fluentui ███████████ 11,215
157
+ icon ███████████ 10,920
158
+ material ███████████ 10,746
159
+ react ██████████ 9,861
160
+ typescript █████████ 9,319
161
+ emoji ████████ 7,785
162
+ mcp ██████ 5,715
163
+ cli ████ 4,280
164
+ ai ████ 3,922
165
+ css ███ 3,316
166
+ javascript ███ 3,255
167
+ web ███ 3,209
168
+ font ███ 3,156
169
  ```
170
 
171
 
 
174
  The `dependencies` table covers all five npm dependency types. Runtime dependencies make up the bulk, but devDependencies are also heavily represented since the crawl includes every version of every package.
175
 
176
  ```
177
+ dev ██████████████████████████████ 1,554,463
178
+ runtime ██████████████████ 938,590
179
+ peer ███ 159,324
180
+ optional █ 36,003
181
+ bundled 1,285
182
  ```
183
 
184
 
 
610
 
611
  For questions, feedback, or issues, please open a discussion on the [Community tab](https://huggingface.co/datasets/open-index/open-npm/discussions).
612
 
613
+ *Last updated: 2026-04-11 09:46 UTC*
data/dependencies/0001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f2cf3945d05317e96ea759535c0b82a587330193c9217baff9fa0f5456aefe08
3
- size 3011901
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0e7f708495c53eb51afbd7d122fc7e250410e381d1fa1b8f01d569c53b8e876
3
+ size 3159429
data/dependencies/0002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8039051c37a1f89675de295807f3c7451fd5aba69022210aa4fb42aac423a5a4
3
+ size 2613272
data/dependencies/0003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88dccd38cf171cc4efe4259cb050e991aac166a203e28cc417626fa25746dc35
3
+ size 3061478
data/dependencies/0004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52812eb318349d64bc6dbbac41669a0aaa70209ed5d8c4f6ce28587d57c20026
3
+ size 2803014
data/dependencies/0005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:347ba2fb0c6f096c9e8c11d3a18cc202cb752e1ee96889523f93635033d1deed
3
+ size 1176197
data/keywords/0000.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c4c65a7cb65510379da8eb49983d5210d1fba6fc3f1164c930c7d11201e678b1
3
- size 1292018
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5c2737439ac8b893c6b8c1bd727a2d1ea345dc829c13bf8731df554e6da77a8
3
+ size 2120559
data/keywords/0001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e67948452350fce563eb3c68753b4a7c3a800810cc7c9fe5d758b246706b93af
3
+ size 1707246
data/maintainers/0000.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:00f12cf77137d2c3508b1d93186708d700ac7483ae11456dda37112b50a98462
3
- size 1254039
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc80fefa782deef8f2a9bb78198ab9ae7a7a36324ebcf3c8f8d01c09fa5957b4
3
+ size 3087861
data/maintainers/0001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:981512b169acd195262468887be80a90e9343b2d2f5f7fcc41cee2a08e8eeebb
3
+ size 127872
data/packages/0000.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:95d9484ea0309f9d95e319a701ce3e64164e069d2b7683bb7935e64081404f03
3
- size 56178985
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5b3854b2af22dea4e1e0eeccb38aff392fb19a1913e3c2af0692e87232fa2e1
3
+ size 61866351
data/packages/0001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:987ef91865e0f69c86a067351094b83275ee8fc6c7ccdfb538e5d494b9ad596e
3
+ size 53919405
data/packages/0002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a1209ae5d3fc88e662f2d70f01d62bfed3d56ac38e541f16816505f09a5e8fa
3
+ size 14024864
data/versions/0005.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9dbc628c214cb4d7cd43448fbd3c25d206ead4936bf776e01033d9ed744067b6
3
- size 59555012
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a7b9c12a52cd1fdd639bba3229bb01a8cbe4c66b72fa515ea5a899257e1d8cb
3
+ size 94207839
data/versions/0006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abc4a23b12582823627942f6b5cc18965dc06bc92ad1fd179f36975a3316bd2b
3
+ size 94252839
data/versions/0007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c151660f14ee1aaf2102b9fec3c60dec66ce61bddf79dbb44999ef97df768de5
3
+ size 119586455
data/versions/0008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99327eb0f44b1162e0858fd31acabe41494bea0e20adcf6c06f67fa95836cc00
3
+ size 89737743
data/versions/0009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:391619665f9067296da1ce3cc8fc117557858e255c2da4b58ec48b3461b98bbf
3
+ size 94808905