@sumor/short-id

short-id

Sumor Cloud ツール。
詳しいドキュメント

これは Node.js とブラウザ向けの short-id ライブラリです。
数値から短い ID を生成するために簡単に使用できます。

CI Test Coverage Audit

インストール

npm i @sumor/short-id --save

前提条件

Node.JS バージョン

Node.JS バージョン 16.x 以上が必要です

Node.JS ES モジュールの使用

このパッケージは ES モジュールで書かれていますので、
package.json ファイル内の次のコードを変更してください:

{
  "type": "module"
}

使用方法

標準的な使用方法

import { encode, decode } from '@sumor/short-id'

// デフォルトでは、ルール 0123456789abcdefghigklmnopqrstuvwxyzABCDEFGHIGKLMNOPQRSTUVWXYZ を使用
const shortId1 = encode(10)
console.log(shortId1) // 'a'
const shortId2 = encode(72)
console.log(shortId2) // '1a'

const number1 = decode('a')
console.log(number1) // 10
const number2 = decode('1a')
console.log(number2) // 72

カスタムな使用方法

import { encode, decode } from '@sumor/short-id'

const rule = '0123456789abcdefghigklmnopqrstuvwxyz'
const shortId1 = encode(10, rule)
console.log(shortId1) // 'a'
const shortId2 = encode(46, rule)
console.log(shortId2) // '1a'

const number1 = decode('a', rule)
console.log(number1) // 10
const number2 = decode('1a', rule)
console.log(number2) // 46