
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
Brings the power of nibelung to AngularJS.
This library does two things:
angular.module('your-module', ['nibelu-ng'])
.service('yourService', function (nibelung) {
var cache = new nibelung.Hoard({
namespace: 'foo'
});
})
$http calls..service('yourService', function (HttpHoard) {
var tenSecondCache = new HttpHoard({
namespace: 'httpCache',
ttlMilliseconds: 10000 // Cache records will expire 10 seconds after completion.
});
function getStuffWithTenSecondCache(url) {
return $http.get('foo/bar', {
cache: tenSecondCache
});
}
return {
getStuffWithTenSecondCache: getStuffWithTenSecondCache
};
});
See the original library for all the config options.
You can get it with the usual suspects:
bower install nibelu-ng
npm install nibelu-ng
FAQs
'AngularJS Wrappers for Nibelung'
We found that nibelu-ng demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.