
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Quick and dirty view library based on rxjs. Syntax inspired by angular2.
The simple example/demo completely renders in under 200ms. DOM updates are done asyncronously and only updates the nodes with the changes.
// app.ts
import { Component } from 'domimick'
@Component({
selector: 'app-root',
template: `<div>{{ this.name }}</div>`,
})
export class App {
name = `app-${Math.random()}`
}
// index.ts
import { bootstrap } from 'domimick'
import { App } from './app'
document.addEventListener(document, 'DOMContentLoaded', () => {
bootstrap(App)
})
Adding new components will just require a simple import into index.ts
// app/myComponent.ts
import { Component } from 'domimick'
@Component({
selector: 'my-component',
template: `<div>{{ this.name }}</div>`,
})
export class MyComponent {
name = `app-${Math.random()}`
}
// index.ts
...
import './app/myComponent'
...
No need to inject or provide it. The component is automatically registered by the library. It will auto-mount when ever it encounters a my-component
custom element.
FAQs
View render
We found that domimick demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.