
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@neondot/dot
Advanced tools
A native first, front end library for creating awesome UI. Created to leverage the gap between native apis and reactive frameworks.
Full documentation is available here https://neondot.rndv.studio/
To test this file use a bundler and include the result in an html file
import { DotApp, DotComponent, register, html } from 'dot';
const app = new DotApp();
class AppTitle extends DotComponent {
// Declare observed attributes thath will trigger renders on change
static get observedAttributes() { return ['title']; }
static get tag() { return 'app-title' }
constructor() {
super();
this.$data.something = null;
// Watch this data and log it's value on change
this.$watchers.set('something', (newValue, oldValue) => {
console.log('Old: ', oldValue);
console.log('New: ', newValue);
});
this.$template = () => html`
<style>
h1 { color: darkgray; }
</style>
<h1>${this.getAttribute('title')}</h1>
`;
}
}
class TextBlock extends DotComponent {
static get tag() { return 'text-block' }
constructor() {
super();
this.$template = () => html`
<!-- Mount a child compinent using the template -->
<app-title title="Hello world!" ref="title"></app-title>
`;
requestAnimationFrame(() => {
// Wait next tick and render its child
this.$refs.title.render();
});
setTimeout(() => {
// Update the title attribute, and trigger the update
this.$refs.title.setAttribute('title', '...Hooray!');
// Also trigger a watcher by changing a watched data
this.$refs.title.$data.something = 'hello!';
}, 2000);
}
}
// Create the app mounting it on a DOM node
app.create(document.querySelector('#app'));
// Register both the components
register(AppTitle);
register(TextBlock);
// Pragmatically create a TextBlock component
const tb = new TextBlock();
// Mount the text block on the app node by not settina a parent
app.mount(tb);
console.log(app.$children);
FAQs
A native first, front end library for creating awesome UI. Created to leverage the gap between native apis and reactive frameworks.
The npm package @neondot/dot receives a total of 3 weekly downloads. As such, @neondot/dot popularity was classified as not popular.
We found that @neondot/dot 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.