Gathering detailed insights and metrics for projectz
Gathering detailed insights and metrics for projectz
Gathering detailed insights and metrics for projectz
Gathering detailed insights and metrics for projectz
get-projectz-readme-section-regex
Returns a regex for Projectz readme sections depending on the section name.
@akinon/projectzero
CLI tool to manage your Project Zero Next project
@akinon/eslint-plugin-projectzero
ESLint plugin for Project Zero Next
@dword-design/test-projectz
sdfg sdfgsdfgsdfgsdf gsdfg sdfg sdfg
npm install projectz
Typescript
Module System
Min. Node Version
Node Version
NPM Version
68.8
Supply Chain
59.4
Quality
75.9
Maintenance
100
Vulnerability
98.6
License
TypeScript (99.66%)
JavaScript (0.34%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
948,458
Last Day
28
Last Week
259
Last Month
1,972
Last Year
66,572
NOASSERTION License
269 Stars
411 Commits
63 Forks
7 Watchers
1 Branches
11 Contributors
Updated on Mar 13, 2025
Minified
Minified + Gzipped
Latest Version
4.2.0
Package Id
projectz@4.2.0
Unpacked Size
188.88 kB
Size
38.97 kB
File Count
54
NPM Version
10.2.3
Node Version
20.10.0
Published on
Dec 29, 2023
Cumulative downloads
Total Downloads
Last Day
-86.9%
28
Compared to previous day
Last Week
-53.8%
259
Compared to previous week
Last Month
-21.5%
1,972
Compared to previous month
Last Year
-22.6%
66,572
Compared to previous year
14
Stop wasting time syncing and updating your project's README and Package Files!
This far, projectz is used directly by 802 repositories and 348 packages, and indirectly by 2936 repositories and 349 packages.
Here's some of the things it can do:
package.json
bower.json
component.json
jquery.json
README
CONTRIBUTING
LICENSE
BACKERS
HISTORY
Once installed locally, you can compile your project using projectz by running the following in your terminal:
1npx projectz
To make projectz more automatic, we recommended adding the direct command above to your build tool.
If you don't use a build tool, but do use npm, then you can add the following to your project's package.json
file:
1{ 2 "scripts": { 3 "compile": "projectz", 4 "posttest": "projectz" 5 } 6}
The compile
script here is runnable via the command npm run-script compile
and will compile your project with projectz.
The posttest
script here automatically compiles your project with projectz after your tests have successfully completed, providing you use npm test
to run your tests. This is a great place to put projectz as projectz only updates meta documents so won't affect your test, and will always run before a publish.
If you get a rate limit warning, you will need to add GITHUB_ACCESS_TOKEN
(or a GITHUB_CLIENT_ID
AND GITHUB_CLIENT_SECRET
combination) to your environment. To do this:
.bashrc
, .zshrc
) add export GITHUB_ACCESS_TOKEN="the token value"
export GITHUB_ACCESS_TOKEN="the token value"
in your current shellProjectz helps you maintain the following package files:
package.json
bower.json
component.json
jquery.json
It does this by reading them, combining their data in memory, and then outputting the appropriate fields and over-rides for each file.
If you are making use of multiple package files, you may find defining a projectz.json
package file will help, as it can serve as a central location for the configuration of all the other files. However, if you only require one package file, then you can ignore this ability.
Projectz takes notes of these meta data fields:
1{ 2 // Specify your project's human readable name 3 "title": "Projectz", 4 5 // Specify your project name 6 "name": "projectz", 7 8 // Specify your project's Website URL 9 "homepage": "https://github.com/bevry/projectz", 10 11 // Specify your project's demo URL 12 // If this is missing, and `homepage` is set, we set it to the `homepage` value 13 "demo": "https://github.com/bevry/projectz", 14 15 // Specify your project description 16 "description": "Stop wasting time syncing and updating your project's README and Package Files!", 17 18 // Specify your project's SPDX License 19 // Uses https://www.npmjs.com/packages/spdx for parsing 20 "license": "MIT", 21 22 // Specify your whether the project can run on the client-side in web browsers 23 // If this is missing, and the component or bower package files exist, then this becomes `true` 24 "browsers": true, 25 26 // Specify your project's author details 27 // Can be an array or CSV string 28 "author": "2013+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me)", 29 30 // Specify your maintainers 31 "maintainers": [ 32 "Benjamin Lupton (b@lupton.cc) (http://balupton.com)" 33 ], 34 35 // Specify your sponsors 36 "sponsors": [ 37 "Benjamin Lupton (b@lupton.cc) (http://balupton.com)" 38 ], 39 40 // Specify your contributors 41 // This is automatically combined with the contributors from the GitHub Repository API 42 "contributors": [ 43 "Benjamin Lupton (b@lupton.cc) (http://balupton.com)" 44 ], 45 46 // Specify your project's repository details 47 // If this is missing, and `homepage` is a GitHub URL, this determined automatically 48 "repository": { 49 "type": "git", 50 "url": "https://github.com/bevry/projectz.git" 51 }, 52 53 // Specify your project's issue tracker 54 // If this is missing, and `repository` is a GitHub repository, this determined automatically 55 "bugs": { 56 "url": "https://github.com/bevry/projectz/issues" 57 }, 58 59 // Specify your project's badges for use in the readme files 60 // Projectz renders badges by sending the `badges` field to the `badges` package. 61 // Below is some sample projectz configuration for this field to render our most common badges. 62 // Even more badge types and configurations are available than just those included below. 63 // Complete details of what is available can be found over at the badges package: 64 // https://github.com/bevry/badges 65 "badges": { 66 "list": [ 67 "travisci", 68 "npmversion", 69 "npmdownloads", 70 "daviddm", 71 "daviddmdev", 72 "---", 73 "slackin", 74 "patreon", 75 "gratipay", 76 "flattr", 77 "paypal", 78 "bitcoin", 79 "wishlist" 80 ], 81 "config": { 82 "patreonUsername": "bevry", 83 "gratipayUsername": "bevry", 84 "flattrUsername": "balupton", 85 "paypalURL": "https://bevry.me/paypal", 86 "bitcoinURL": "https://bevry.me/bitcoin", 87 "wishlistURL": "https://bevry.me/wishlist", 88 "slackinURL": "https://slack.bevry.me" 89 } 90 }, 91 92 // If you are using the projectz meta file, you can also define this field 93 // it allows you to set the configuration for other package systems 94 "packages": { 95 "bower": {}, 96 "component": {}, 97 "jquery": {} 98 } 99}
Projectz helps you maintain the following readme files:
README.md
CONTRIBUTING.md
LICENSE.md
BACKERS.md
HISTORY.md
It does this by reading them, and replacing comment tags with the appropriate data.
The following comment tags are supported:
<!-- TITLE -->
— outputs the package's title
field<!-- BADGES -->
— outputs the badges you have enabled from your package's badges
field<!-- DESCRIPTION -->
— outputs the package's description
field<!-- INSTALL -->
— outputs the package's installation instructions<!-- HISTORY -->
— outputs a link to the HISTORY
file if it exists, otherwise if it is a Github repository, outputs a link to the releases page<!-- CONTRIBUTE -->
— outputs a link to the CONTRIBUTE
file if it exists<!-- BACKERS -->
— outputs who the backers are for the project, including maintainers, sponsors, funding badges, and contributors<!-- LICENSE -->
— outputs a summary of the license informationAs well as these comment tags for updating entire files:
<!-- LICENSEFILE -->
— outputs the complete license information<!-- BACKERSFILE -->
— same as <!-- BACKERS -->
but made for an individual file insteadAs an example, here is a a basic README.md
file:
<!-- TITLE -->
<!-- BADGES -->
<!-- DESCRIPTION -->
<!-- INSTALL -->
## Usage
Usage instructions go here
<!-- HISTORY -->
<!-- CONTRIBUTE -->
<!-- BACKERS -->
<!-- LICENSE -->
This README is also, expectedly, built with projectz. View its source.
npm install --global projectz
projectz
npm install --save projectz
npx projectz
import * as pkg from ('projectz')
const pkg = require('projectz')
This package is published with the following editions:
projectz/source/index.ts
is TypeScript source code with Import for modulesprojectz
aliases projectz/edition-es2022/index.js
projectz/edition-es2022/index.js
is TypeScript compiled against ES2022 for Node.js 20 with Require for modulesprojectz/edition-es2022-esm/index.js
is TypeScript compiled against ES2022 for Node.js 20 with Import for modulesprojectz/edition-types/index.d.ts
is TypeScript compiled Types with Import for modulesDiscover the release history by heading on over to the HISTORY.md
file.
Discover how to contribute via the CONTRIBUTING.md
file.
Unless stated otherwise all works are:
and licensed under:
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
license file detected
Details
Reason
2 existing vulnerabilities detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 2
Details
Reason
2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Reason
Found 0/18 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-03-10
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