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.
typed-dom
Advanced tools
Static typed dom component builder.
Visualize dom structures and Assist dom access by static types of TypeScript.
Build a typed dom object.
import TypedHTML from 'typed-dom';
const component = TypedHTML.article({ id: 'id' }, {
style: TypedHTML.style(`$scope ul { width: 100px; }`),
title: TypedHTML.h1(`title`),
content: TypedHTML.ul([
TypedHTML.li(`item`),
TypedHTML.li(`item`),
])
});
Then this component has the following static type generated by type inference.
type ComponentTypeIs =
TypedHTMLElement<"article", HTMLElement, {
style: TypedHTMLElement<"style", HTMLStyleElement, string>;
title: TypedHTMLElement<"h1", HTMLHeadingElement, string>;
content: TypedHTMLElement<"ul", HTMLUListElement, TypedHTMLElement<"li", HTMLLIElement, string>[]>;
}>;
// Note: TypedHTMLElement type is defined as follows in typed-dom.d.ts.
export interface TypedHTMLElement<
T extends string,
E extends HTMLElement,
C extends TypedHTMLElementChildren
>
extends AbstractTypedHTMLElement<T> {
readonly element: E;
children: C;
}
type TypedHTMLElementChildren
= TypedHTMLElementChildren.Text
| TypedHTMLElementChildren.Collection
| TypedHTMLElementChildren.Struct;
namespace TypedHTMLElementChildren {
export type Text = string;
export type Collection = TypedHTMLElement<string, HTMLElement, any>[];
export type Struct = { [name: string]: TypedHTMLElement<string, HTMLElement, any>; };
}
abstract class AbstractTypedHTMLElement<T extends string> {
private identifier: T;
}
You can know the internal structure via this type which can be used as the visualization. And you can access and manipulate the internal structure safely guided by this type.
// inspect
component.element.outerHTML; // '<article id="id"><style>#id ul { width: 100px; }</style><h1>title</h1><ul><li>item</li><li>item</li></ul></article>'
component.children.title.element.outerHTML; // '<h1>title</h1>'
component.children.title.children; // 'title'
component.children.content.element.outerHTML; // '<ul><li>item</li><li>item</li></ul>'
component.children.content.children[0].children; // 'item'
// update
// - text
component.children.title.children = 'Title';
component.children.title.element.outerHTML; // '<h1>Title</h1>'
// - struct
component.children.content.children = [
TypedHTML.li('Item')
];
component.children.content.element.outerHTML; // '<ul><li>Item</li></ul>'
// - TypedHTML
component.children.title = TypedHTML.h1('Title!');
component.children.content = TypedHTML.ul([
TypedHTML.li('Item!')
]);
component.element.outerHTML; // '<article id="id"><style>#id ul { width: 100px; }</style><h1>Title!</h1><ul><li>Item!</li></ul></article>'
Use micro dom components to hide and manage the typed dom object.
import TypedHTML from 'typed-dom';
class MicroComponent {
constructor(private readonly parent: HTMLElement) {
this.parent.appendChild(this.dom.element);
}
private readonly dom = TypedHTML.div({ id: `${this.parent.id}-list-${Date.now()}-${Math.random() * 1e9 | 0}` }, {
style: TypedHTML.style(`$scope ul { width: 100px; }`),
content: TypedHTML.ul([
TypedHTML.li(`item`)
])
});
}
Use dom components to manage the micro dom components.
import TypedHTML from 'typed-dom';
class Component {
constructor(private readonly parent: HTMLElement) {
this.parent.appendChild(this.element);
}
private readonly element = TypedHTML.div({ id: 'id' }, [
TypedHTML.style(`$scope { position: relative; }`)
]).element;
private readonly children = Object.freeze({
list: new MicroComponent(this.element)
});
destroy() {
this.element.remove();
}
}
FAQs
A value-level and type-level DOM builder.
The npm package typed-dom receives a total of 8 weekly downloads. As such, typed-dom popularity was classified as not popular.
We found that typed-dom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.