A Blockstore implementation that uses a flavour of Level as a backend.
N.b. this is here largely for the sake of completeness, in node you should probably use FSDatastore, in browsers you should probably use IDBDatastore.
import { LevelBlockstore } from 'blockstore-level'const store = new LevelBlockstore('path/to/store') Copy
import { LevelBlockstore } from 'blockstore-level'const store = new LevelBlockstore('path/to/store')
A Blockstore implementation that uses a flavour of Level as a backend.
N.b. this is here largely for the sake of completeness, in node you should probably use FSDatastore, in browsers you should probably use IDBDatastore.
Example