UNPKG

create-node-template

Version:

Create node.js or express boilerplate with one command

14 lines 365 B
export function getPkgManager() { const userAgent = process.env.npm_config_user_agent || ''; if (userAgent.startsWith('yarn')) { return 'yarn'; } if (userAgent.startsWith('pnpm')) { return 'pnpm'; } if (userAgent.startsWith('bun')) { return 'bun'; } return 'npm'; } //# sourceMappingURL=get-pkg-manager.js.map