pocari / js-package-manager-sample

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setup

docker build -t sample:v1 .

run

docker run -it -v$(pwd):/sample --workdir /sample sample:v1 bash

in container

create cache

cd my-app
npm install
yarn install
pnpm install
bun install

check install

rm -rf node_modules; time npm install
rm -rf node_modules; time yarn install
rm -rf node_modules; time pnpm install
rm -rf node_modules; time bun install

About


Languages

Language:TypeScript 89.5%Language:CSS 7.1%Language:JavaScript 2.3%Language:Dockerfile 1.1%