@tybys/oid
v4.0.0
Published
Use MongoDB ObjectID without installing bson.
Downloads
1,931
Readme
oid-js
Use MongoDB ObjectID without installing bson.
Usage
$ npm install @tybys/oidCLI
$ oid -h
Usage: oid [options]
Options:
-v, -V, --version output the version number
-h, --help output usage information
-n, --number <N> output N number of ObjectIds
Repo: https://github.com/toyobayashi/oidBrowser
IE OK!
<script src="https://cdn.jsdelivr.net/npm/@tybys/oid/dist/oid.min.js"></script>
<script>
console.log(new oid.ObjectId().toHexString());
</script>Node.js
const { ObjectId } = require('@tybys/oid')
console.log(new ObjectId())TypeScript
import { ObjectId } from '@tybys/oid'
console.log(new ObjectId())API
Same as mongodb/js-bson/src/objectid.ts.
