Package managers
Last updated
Last updated
dAppling will automatically detect the package manager used in your project and install the dependencies during deployment. This detection is based on the lock file present in your project, which allows dAppling to infer the correct package manager to use.
Here are the supported package managers along with their install commands and versions
Package Manger | Lock File | Install Command | Versions |
---|---|---|---|
While dAppling automatically selects the package manager based on your project's lock file, the specific version of that package manager is determined by the version information in the lock file or associated configuration files.
If you wish to manually specify a package manager for all deployments in your project, you can use the build setting in your project's Build & Development Settings. Follow these steps:
Navigate to your dashboard and select your project.
Select the Settings tab.
Add your desired install command. Once saved, it will be applied in your next deployment.
Fun Fact: The world's most poisonous plant is the castor bean plant; just one bean can kill a human.
yarn
yarn.lock
yarn install
1
npm
package-lock.json
npm install
6,7,8
pnpm
pnpm-lock.yaml
pnpm install
6,7,8
bun
bun.lockb
bun install
1