
Security News
TC39 Advances 11 Proposals for Math Precision, Binary APIs, and More
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
@vscode-logging/types
Advanced tools
Types used by @vscode-logging/logger extracted to a separate package to enable in-direct dependents to type check against the correct interfaces.
For example imagine a VSCode extension called Foo
which uses an npm package called Bar
as a dependency and Bar
APIs can accept an optional logger implementation:
// Code in `Bar` npm package
// -------------------------------------------------------
// By defining the `IChildLogger` interface` in `@vscode-logging/types`
// `Bar` only depends (dev dependency) on the interface **not** the implementation.
import { IChildLogger } from "@vscode-logging/types";
export function add(lhs: number, rhs: number, logger: IChildLogger): number {
logger.info("Entering <add> function with params:", { lhs: lhs, rhs: rhs });
return lhs + rhs;
}
With npm:
npm install @vscode-logging/types --save-dev
With Yarn:
yarn add @vscode-logging/types --dev
As shown above, simply import the IChildLogger
interface and use it to define
the type of your injected logger implementation.
Please open issues on github.
See CONTRIBUTING.md.
Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file.
2.0.0 (2024-01-05)
getConfigurations
and onDidChangeConfiguration
properties
were removed from the configureLogger
public APIFAQs
Common Type Signatures for @vscode-logging/logger
The npm package @vscode-logging/types receives a total of 193,715 weekly downloads. As such, @vscode-logging/types popularity was classified as popular.
We found that @vscode-logging/types 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
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.