Sumor Cloud ツール。
詳しいドキュメント
これは Node.js とブラウザ向けの short-id ライブラリです。
数値から短い ID を生成するために簡単に使用できます。
npm i @sumor/short-id --save
Node.JS バージョン 16.x 以上が必要です
このパッケージは 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