本文整理汇总了TypeScript中levelup.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: levelup
import levelup from 'levelup'
import encoding from 'encoding-down'
import level from 'level-js'
export default levelup(encoding(level('worker'), {valueEncoding: 'json'}))
开发者ID:influxdata,项目名称:influxdb,代码行数:5,代码来源:Database.ts
示例2: Error
constructor(params) {
const { path, createIfMissing, errorIfExists } = params;
let basePath;
if (!path) {
basePath = `${os.homedir()}/.bitcore`;
try {
fs.mkdirSync(basePath);
} catch (e) {
if (e.errno !== -17) {
console.error('Unable to create bitcore storage directory');
}
}
}
this.path = path || `${basePath}/bitcoreWallet`;
if (!createIfMissing) {
const walletExists =
fs.existsSync(this.path) &&
fs.existsSync(this.path + '/LOCK') &&
fs.existsSync(this.path + '/LOG');
if (!walletExists) {
throw new Error('Not a valid wallet path');
}
}
if (StorageCache[this.path]) {
this.db = StorageCache[this.path];
} else {
this.db = StorageCache[this.path] = levelup(leveldown(this.path), {
createIfMissing,
errorIfExists
});
}
}
开发者ID:bitjson,项目名称:bitcore,代码行数:32,代码来源:storage.ts
示例3: levelup
app.get('/leveldb', (req, res) => {
const db = levelup(LEVELDB_PATH);
db.get(LEVELDB_KEY, (err, value) => {
if (err) { res.json(null); }
res.json(value);
db.close(); // どのタイミングでcloseすればいいのかイマイチわからない。
});
// db.close();
});
开发者ID:ovrmrw,项目名称:shuttle-store-sample,代码行数:9,代码来源:express.ts
示例4: init
init() {
this.inst = levelup( leveldown( path.resolve( this.dir, "commands" ) ) );
}
开发者ID:hleclerc,项目名称:nsmake,代码行数:3,代码来源:Db.ts
示例5: createDb
export function createDb(options: CreateDbOptions): LevelUp {
return levelup(leveldown(options.dbPath));
}
开发者ID:mshick,项目名称:arrivals-osx,代码行数:3,代码来源:db.ts
示例6: encode
import levelup from 'levelup';
import { AbstractLevelDOWN } from 'abstract-leveldown';
interface StringEncoding {
encode(val: any): string;
decode(val: string): any;
buffer: boolean;
type: string;
}
declare const stringEncoding: StringEncoding;
const db = levelup(new AbstractLevelDOWN('here'), {
keyEncoding: stringEncoding,
valueEncoding: stringEncoding
});
db.open();
db.close();
db.open((error) => {
});
db.close((error) => {
});
db.put("key", {});
db.put("key", {}, (error) => {});
db.put("key", {}, { sync: true}, (error) => {});
db.get("key", {keyEncoding: "json"}, (error, val) => {});
db.get("key", {fillCache: true}, (error, val) => {});
开发者ID:AlexGalays,项目名称:DefinitelyTyped,代码行数:31,代码来源:levelup-tests.ts
注:本文中的levelup.default函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论