
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
node-logs-sqlite
Advanced tools
A class to manage logs
$ npm install node-logs-sqlite
node-logs inheritage
-- Interfaces --
interface iLogDate {
year: string,
month: string,
day: string
}
interface iLog {
date: string,
time: string,
type: string,
message: string
}
-- Constructor --
constructor ()
-- Methods --
-- Accessors --
deleteLogsAfterXDays (deleteLogsAfterXDays: number): this
localStorageDatabase (localStorageDatabase: string): this
-- Init / Release --
init(): Promise< resolve<void> | reject<Error> >
create local storage if not exists and delete old logs
release(): Promise< resolve<void> | reject<Error> >
-- Read logs --
getLogs(): Promise< resolve< Array<iLogDate> > | reject<Error> >
readLog(year: string|number, month: string|number, day: string|number): Promise< resolve< Array<iLog> > | reject< ReferenceError|TypeError|Error > >
const Logs = require("node-logs-sqlite");
const logs = new Logs();
// optionnal : configure the logger
logs
.deleteLogsAfterXDays(2)
.localStorageDatabase(require("path").join(__dirname, "logs.db"))
.showInConsole(true);
return logs.init().then(() => {
return logs.log("this is a message", [ "background" ]);
}).then(() => {
return logs.getLogs().then((logs) => {
return logs.readLog(year, month, day);
}).then((logs) => {
console.log(logs); return Promise.resolve();
});
}).then(() => {
return logs.release();
}).catch((err) => {
console.log(err);
});
import Logs = require("node-logs-sqlite");
const logs = new Logs();
logs.init().then(() => {
return logs.log("log");
});
$ gulp
FAQs
A class to manage logs with sql base
The npm package node-logs-sqlite receives a total of 4 weekly downloads. As such, node-logs-sqlite popularity was classified as not popular.
We found that node-logs-sqlite 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.