Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@stencil-community/web-types-output-target
Advanced tools
an experimental stencil output target supporting web-types
A Stencil output target for generating web-types to provide intellisense for Stencil components for HTML files.
[!NOTE] This package is experimental - It's pre-v1.0, things may change over time.
One of the core features of web components is the ability to create custom elements, which allow developers to reuse custom functionality defined in their components.
When Stencil compiles a project, it generates a custom element for each component in the project.
Each of these custom elements has an associated tag
name that allows the custom element to be used in HTML files.
By default, integrated development environments (IDEs) like JetBrains' WebStorm are not aware of a project's custom elements when authoring HTML. In order to enable more intelligent features in JetBrains products such as auto-completion, hover tooltips, etc., developers need to inform it of their project's custom elements.
The docs-web-types
output target tells Stencil to generate a JSON file containing this information.
This is an opt-in feature and will save a JSON file containing web-types in a directory specified by the output target. Once the feature is enabled and your IDE is informed of the JSON file's location, HTML files can gain code editing features similar to TSX files.
The web-types output target is not built in to Stencil itself. Instead, it's a third party package, that needs to be installed as a dev dependency:
$ npm i --save-dev @stencil-community/web-types-output-target
To generate custom element information for JetBrains IDE's, add the docs-web-types
output target to your stencil.config.ts
:
import { Config } from '@stencil/core';
import { webTypesOutputTarget } from '@stencil-community/web-types-output-target';
export const config: Config = {
outputTargets: [
webTypesOutputTarget(),
]
};
To generate the JSON file, have Stencil build your project.
Stencil will write a web-types.json
to your project's root directory.
Web Types for your project can be picked by JetBrains IDEs by setting the web-types
property in your project's package.json
file:
{
"name": "your-projects-name",
"version": "1.0.0",
"//": "Other details omitted",
"web-types": "./web-types.json"
}
Having this file locally on disk will allow your JetBrains IDE to pick up additional typings automatically.
To provide these IDE-specific typings to users of your library, be sure to include the generated web-types file in your package's distributable by adding it to your package.json#files
array.
https://plugins.jetbrains.com/docs/intellij/websymbols-web-types.html#file-structure
FAQs
an experimental stencil output target supporting web-types
The npm package @stencil-community/web-types-output-target receives a total of 243 weekly downloads. As such, @stencil-community/web-types-output-target popularity was classified as not popular.
We found that @stencil-community/web-types-output-target demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.