Gathering detailed insights and metrics for @lerna/init
Gathering detailed insights and metrics for @lerna/init
Gathering detailed insights and metrics for @lerna/init
Gathering detailed insights and metrics for @lerna/init
@lerna-lite/init
Lerna-Lite init commmand - Create a new Lerna repo or upgrade an existing repo to the current version of Lerna
@lerna-dockerize/init
A dockerfile generator for lerna projects
@lerna-pro/init
lerna-pro init
@erquhart/lerna-init
Create a new Lerna repo or upgrade an existing repo to the current version of Lerna
Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.
npm install @lerna/init
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (95.89%)
JavaScript (3.1%)
Shell (0.5%)
CSS (0.5%)
Batchfile (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
35,972 Stars
2,816 Commits
2,275 Forks
251 Watchers
33 Branches
338 Contributors
Updated on Jul 13, 2025
Latest Version
6.6.2
Package Id
@lerna/init@6.6.2
Unpacked Size
607.62 kB
Size
111.30 kB
File Count
239
NPM Version
lerna/6.6.2/node@v18.15.0+arm64 (darwin)
Node Version
18.15.0
Published on
May 04, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
lerna init
Create a new Lerna repo or upgrade an existing repo to the current version of Lerna
Install lerna for access to the lerna
CLI.
1$ lerna init
Create a new Lerna repo or upgrade an existing repo to the current version of Lerna.
Lerna assumes the repo has already been initialized with
git init
.
When run, this command will:
lerna
as a devDependency
in package.json
if it doesn't already exist.lerna.json
config file to store the version
number..gitignore
file if one doesn't already exist.Example output on a new git repo:
1$ lerna init 2lerna info version v2.0.0 3lerna info Updating package.json 4lerna info Creating lerna.json 5lerna success Initialized Lerna files
--independent
1$ lerna init --independent
This flag tells Lerna to use independent versioning mode.
--exact
1$ lerna init --exact
By default, lerna init
will use a caret range when adding or updating
the local version of lerna
, just like npm install --save-dev lerna
.
To retain the lerna
1.x behavior of "exact" comparison, pass this flag.
It will configure lerna.json
to enforce exact match for all subsequent executions.
1{ 2 "command": { 3 "init": { 4 "exact": true 5 } 6 }, 7 "version": "0.0.0" 8}
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
5 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 5
Reason
Found 14/28 approved changesets -- score normalized to 5
Reason
5 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More