Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@arkitektum/client-logger
Advanced tools
With Yarn:
yarn add @arkitektum/client-logger
With npm:
npm install @arkitektum/client-logger
index.js:
import React from "react";
import ReactDOM from "react-dom/client";
import { ClientLogger } from "@arkitektum/client-logger";
import App from "App";
const apiUrl = "https://url.to.api";
const sourceMapUrl = `${document.currentScript.src}.map`;
const appName = "Application name";
ClientLogger.create(apiUrl, sourceMapUrl, appName).then((clientLogger) => {
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App clientLogger={clientLogger} />);
});
let logMessage;
fetch(apiUrl, fetchOptions)
.then((res) => {
response = res;
logMessage = {
statuscode: response?.status,
path: response?.url
};
return res.json();
})
.then((fetchedData) => {
const logMessages = [];
if (!fetchedData?.arrayWithStuff?.length) {
logMessages.push({
...logMessage,
level: "Warning",
message: "No stuff in array"
});
}
if (!fetchedData?.valueThatShouldBeTrue) {
logMessages.push({
...logMessage,
level: "Warning",
message: "Value that should be true is not true"
});
}
!!clientLogger.length && clientLogger.postLogData(logMessages);
return fetchedData;
})
.catch((error) => {
logMessage = {
level: "Error",
path: apiUrl
};
clientLogger.getLogMessageFromError(error, logMessage).then((logMessage) => {
clientLogger.postLogData([logMessage]);
});
});
interface LogMessage {
appName?: string;
sessionId?: string;
clientInfo?: object;
level?: string;
message?: string;
originalPosition?: {
column: number;
line: number;
name: string;
source: string;
};
path?: string;
stackTrace?: string;
statuscode?: string;
correlationId?: string;
}
declare class ClientLogger {
logApiUrl: string;
sourceMapUrl: string;
sourceMapJson: string;
appName: string;
sessionId: string;
constructor(logApiUrl: string, sourceMapJson: string, appName: string);
private getSessionId;
static create(logApiUrl: string, sourceMapUrl: string, appName: string): Promise<ClientLogger>;
getLogMessageFromError(error: Error, logMessageProps: LogMessage): Promise<LogMessage>;
postLogData(logMessages: Array<LogMessage>): void;
}
FAQs
## Installation
The npm package @arkitektum/client-logger receives a total of 6 weekly downloads. As such, @arkitektum/client-logger popularity was classified as not popular.
We found that @arkitektum/client-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
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.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.