Skip to content

NPM Installs

Alessio Bianchini edited this page Dec 17, 2025 · 3 revisions

Install Latest NPM Release

npm install --save ng-flex-layout@latest

or:

pnpm add ng-flex-layout@latest

For recent fixes and code merges that have not yet been released to npm, prefer installing from a local build.

Install from a Local Build (unreleased changes)

From the ng-flex-layout repository:

pnpm install
pnpm run build
cd dist/releases/flex-layout
npm pack

Then, in your app:

npm install /path/to/ng-flex-layout-<version>.tgz

Developers may need to first clear their existing node_modules directory using:

rm -rf node_modules/
npm install

Clone this wiki locally