Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
angular-pouchdb-logger
Advanced tools
Enables logging to web database via pouchdb and $log delegate. The library is Ionic-aware and autoselect the best db for each platform
A module for enabling logging to web database via pouchdb and $log delegate. The library is Ionic-aware and autoselect the best db for each platform
Feel free to donate
Or donate Bitcoins:
Also via greenaddress
Install this module:
npm install angular-pouchdb-logger --save
or via bower
bower install angular-pouchdb-logger --save
Add the dependencies
/*global app: true*/
var app = angular.module('resourcesApp', [
...
'ngDbLogger.core'
]);
If you like to log also debug change the config:
app.config(function (ngDbLoggerConfig) {
'use strict';
// custom log db name
ngDbLoggerConfig.dbName = 'customLogDB';
// enable db logging (default true)
ngDbLoggerConfig.dbLogging = true;
// enable debug logging to db
ngDbLoggerConfig.debug = true;
// enable trace logging to db
ngDbLoggerConfig.trace = true;
});
The log entries can be read via the dbLoggerService
app.controller('myController', function (dbLoggerService) {
'use strict';
// reset database
dbLoggerService.clearLogData().then(function () {
...
});
// read log data
dbLoggerService.readLogData('INFO').then(function (logEntries) {
...
});
});
This module instruments Angular's delegate
to redirect log entries.
FAQs
Enables logging to web database via pouchdb and $log delegate. The library is Ionic-aware and autoselect the best db for each platform
The npm package angular-pouchdb-logger receives a total of 3 weekly downloads. As such, angular-pouchdb-logger popularity was classified as not popular.
We found that angular-pouchdb-logger 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.