
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@namics/remlog-scheme
Advanced tools
const { fields, Scheme, isSchemeIdValid, isCustomField } = require("@namics/remlog-scheme");
type SchemeValidationType {
key: string,
error: Error | null
};
interface IScheme {
get(): Object;
validate(): Array<SchemeValidationType>;
clean(): void;
serialize(): string;
toString(): string;
}
const { Scheme } = require("@namics/remlog-scheme");
const examplePayload = {
shortMessage: "Some message",
fullMessage: "An extended message for the log",
level: 5,
file: "example.js",
line: 172,
timestamp: "2018-01-18T15:16:15.244Z"
};
const validCustomPayload = Object.assign({}, examplePayload, {
$custom: "some data ..." // custom fields are prefixed by dollar
});
const invalidPayload = Object.assign({}, examplePayload, {
id: "8an204asdf1" // it is not allowed to set the ID manually
});
const validScheme = new Scheme(examplePayload);
validScheme.validate(); // returns []
const validCustomScheme = new Scheme(validCustomPayload);
validCustomScheme.validate(); // returns []
const invalidScheme = new Scheme(invalidPayload);
invalidScheme.validate(); // returns [{key: 'id', error: Error('The key id is a computed field and cannot be set manually.')}]
validScheme.get(); // will return the full scheme including timestamp, id etc.
Review the Changelog
FAQs
###### Contents
We found that @namics/remlog-scheme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.