
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@soinlabs/hawk
Advanced tools
Error and logs framework for Soin Labs projects.
For getting a simple use of Hawk, follow the steps bellow:
Export the Hawk constructor and make an instance:
// your index.js to handle hawk singleton configuration
const { Hawk } = require("@soinlabs/hawk");
const customizedHawk = new Hawk({
logsPath: "yourWorkspace/route/example/logsDirectory",
slackToken: "yourWebhookChannelURL",
appName: "yourApplicationName",
optionalSign: "optionalBenchmark",
});
Use your Hawk instance to perform your logs
customizedHawk.log("My first log");
const newError = customizedHawk.CreateElasticError("message", 300);
customizedHawk.log(newError);
// It is possible to perform a simple log with logging level
const { Logger } = require("@soinlabs/hawk");
customizedHawk.log("My first log", Logger.SILLY);
Some error and logs handling utilities
// Some error and logs handling utilities:
const { Logger, LoggedError } = require('@soinlabs/hawk')
const LoggingLevels = {
error: Logger.ERROR,
warn: Logger.WARN,
info: Logger.INFO,
http: Logger.HTTP,
verbose: Logger.VERBOSE,
debug: Logger.DEBUG,
silly: Logger.SILLY,
};
const ErrorLevels = {
low: LoggedError.LOW_LEVEL,
medium: LoggedError.MEDIUM_LEVEL,
high: LoggedError.HIGH_LEVEL,
};
/**
* It creates an Elastic Error with message and code, after, it makes log with this error
* and throw the created error as an exception
* @param {String} message what happened?
* @param {Number} status status code
* @param {Number} errorLevel optional
*/
function sendError(message, status, errorLevel = ErrorLevels.low) {
const error = customizedHawk.CreateElasticError(message, status);
error.setErrorLevel(errorLevel);
customizedHawk.log(error, LoggingLevels.error);
throw error;
}
/**
* It performs a log with this message at warning level
* @param {String} msg
*/
function sendWarning(msg) {
customizedHawk.log(
{ message: msg, referenceCode: customizedHawk.getReferenceCode() },
LoggingLevels.warn
)
}
/**
* It creates an Elastic Error with message and code, after, it makes log with this error
* @param {String} message
* @param {Number} code
* @param {Number} errorLevel optional
*/
function logError(message, code, errorLevel = ErrorLevels.low) {
const error = customizedHawk.CreateElasticError(message, code)
customizedHawk.log(error, LoggingLevels.error)
}
...
// Use your utilies
// This throw an exception
sendError("No id provided", 400);
// It performs a warning level log
sendWarning('Bad request')
You could do some things like these:
Throw LoggedError
// Use builder pattern
throw new LoggedError()
.setMessage(`Error captured by hawk: ${message}`)
.setReferenceCode("myFile.js")
.setErrorLevel(LoggedError.HIGH_LEVEL)
.setToLog(true)
.setToSlack(true);
// Another way
throw new LoggedError({
message: `Error captured by hawk: ${message}`,
status: 401,
toLog: true,
toElastic: false,
toSlack: true,
newField: "yourNewFieldValue",
});
FAQs
Package to better manage errors, logs, and its notifications
The npm package @soinlabs/hawk receives a total of 141 weekly downloads. As such, @soinlabs/hawk popularity was classified as not popular.
We found that @soinlabs/hawk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.