Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
ee-project
Advanced tools
Loads config.js files in the project roo directory, provides infos about git
Loads config.js files in the project roo directory, provides infos about git
npm install ee-project
var project = require('ee-project');
returns the projects root path
log(project.root);
returns the contents of the config.sj file in the project root path, if available
log(project.config);
returns the current revision of HEAD of the git repository found in the project.root directory
project.git.revision(function(err, revision){
log(revision); // 324...
});
returns the remote of the git repository found in the project.root directory
project.git.remote(function(err, remote){
log(remote); // git@github.com:eventEmitter/ee-project
});
returns the remoteRepository of the git repository found in the project.root directory
project.git.revision(function(err, remoteRepository){
log(remoteRepository); // eventEmitter/ee-project
});
FAQs
Loads config.js files in the project roo directory, provides infos about git
We found that ee-project demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.