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.
@power-js/core
Advanced tools
A powerful JavaScript library for building web components
Fast Rendering
Virtual DOM for detecting deltas and isolating renders.
Minimalistic
PowerJS makes use of just 3 functions.
Size
Library is only 2.3k
No Dependencies
A standalone library with no dependencies.
Components
Build Components with an encapsulated state.
React-like API
If you know how you use React then you already know how to use PowerJS.
You can use PowerJS with just place the script into your document, but if you prefer html Syntax you should take a look at JSX. There is a Babel plugin which transforms your JSX Syntax into a VDom.
PowerJS is provided as a UMD library to accommodate any loading method.
Attach the library as an object to the window Power
:
<script src="power.js"></script>
Via import:
import { render, h, Component } from 'power-js';
// h(...)
Via require:
const Power = require('power-js');
// Power.h(...)
There is a repository on github which helps you to get started.
Here is a typical example for a counter component.
JSX:
import Power, { render, Component } from 'power-js';
class Counter extends Component {
render(){
return (
<div className="counter">
<p>Counter: {this.data.counter.toString()}</p>
<button click={() => { this.data.counter += 1; }}>+</button>
<button click={() => { this.data.counter -= 1; }}>-</button>
<button click={() => { this.data.counter = 0; }}>Reset</button>
</div>
)
}
}
const myCounter = new Counter({counter: 0});
render(myCounter, document.body);
Plain JS:
import { h, render, Component } from 'power-js';
class Counter extends Component {
render() {
return (
h('div', {class: 'counter'},
h('p', null, `Counter: ${this.data.counter.toString()}`),
h('button', {click: () => { this.data.counter += 1; }}, '+'),
h('button', {click: () => { this.data.counter -= 1; }}, '-'),
h('button', {click: () => { this.data.counter = 0; }}, 'Reset')
)
)
}
}
const myCounter = new Counter({counter: 0});
render(myCounter, document.body);
Feel free to fork this project and PR!
Dysfunc 💻 👀 | Jan-Markus Langer 💻 👀 |
---|
FAQs
A powerful JavaScript library for building web components.
We found that @power-js/core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.