You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install dependencies using `npm install` first, and then simply run `npm test` to run the test suite.
142
142
143
+
### CLI
144
+
145
+
`ulid` can be used on the command line, either via global install:
146
+
147
+
```shell
148
+
npm install -g ulid
149
+
ulid
150
+
```
151
+
152
+
Or via `npx`:
153
+
154
+
```shell
155
+
npx ulid
156
+
```
157
+
158
+
You can also generate multiple IDs at the same time:
159
+
160
+
```shell
161
+
ulid --count 15
162
+
```
163
+
143
164
## Specification
144
165
145
166
You can find the full specification, as well as information regarding implementations in other languages, over at [ulid/spec](https://github.com/ulid/spec).
0 commit comments