Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
noIndex is database for multiple users / repositories / backend. in-memory cache for git content
noIndex is database for multiple users / repositories / backend. in-memory cache for git content.
Reason:
<a href="openInEditor('github:repositories:username:reponame=1f8ad68b023efdef5489fe37488c1a9693cf6eca')">BlobName</a>
<ul>
<li ng-repeat="repo in noIndex.get('github:repositories:username:?')">
<span>repo.repository</span>
</li>
</ul>
$ npm install noindex --save
var noIndex = require('noindex');
var cache = new noIndex();
cache.setDriver(noIndex.getDriver('memory')); // plain memory storage or
cache.setDriver(noIndex.getDriver('redis')); // using redis for storage. session / offline
cache.setService(noIndex.getService('github', {
token: GITHUB_OAUTH_TOKEN, // OR
username: GITHUB_USERNAME,
password: GITHUB_PASSWORD,
}));
cache.get('service');
cache.get('service:provider');
cache.get('service:provider:username');
cache.get('service:provider:username:repository');
cache.get('service:provider:username:repository:branchName');
cache.get('service:provider:username:repository#tagName');
cache.get('service:provider:username:repository@commit_sha');
cache.get('service:provider:username:repository=blob_sha');
cache.get('service:provider:username:repository/by/path');
cache.get('service:provider:username:repository:master/README.md');
cache.get(''); // or
cache.get('?');
cache.get('github') // or
cache.get('github:?')
cache.get('github:repositories') // or
cache.get('github:repositories:?')
cache.get('github:repositories:username') // or
cache.get('github:repositories:username:?')
list repository branches
cache.get('github:repositories:username:reponame') // or
cache.get('github:repositories:username:reponame:?')
get latest commit by branch
cache.get('github:repositories:username:reponame:master')
get commit by sha
cache.get('github:repositories:username:reponame@f7e24dc3bf04e2278bd780abb8ad28867bdbc16d')
get tree by branch
cache.get('github:repositories:username:reponame:master$?')
get tree by sha
cache.get('github:repositories:username:reponame$ac49c253adf03ed87af773ef5bba525dfe179ebe')
get blob by sha
cache.get('github:repositories:username:reponame=1f8ad68b023efdef5489fe37488c1a9693cf6eca')
get blob by path
cache.get('github:repositories:username:reponame/README.md')
list repository tags
cache.get('github:repositories:username:reponame#?')
get commit / tag by tagname
cache.get('github:repositories:username:reponame#v1.0.2')
FAQs
noIndex is database for multiple users / repositories / backend. in-memory cache for git content
The npm package noindex receives a total of 0 weekly downloads. As such, noindex popularity was classified as not popular.
We found that noindex 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.