dwnpm
Version:
Decentralized Registry Package Manager (DRPM) helps developers publish, install, find and manage Decentralized Packages (DPKs) published to Decentralized Web Nodes (DWNs). DRPM does this by looking up a Decentralized Identifier (DID) to find its DID docum
9 lines • 320 B
JavaScript
import { DWeb5 } from '../../lib/dweb5.js';
import { Profile } from '../../lib/profile.js';
export class ConnectCommand {
async execute({ options }) {
const name = options.name ?? Profile.loadStaticSync().name;
await DWeb5.connect({ name, verbose: true });
}
}
//# sourceMappingURL=connect.js.map