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
This library was designed as a lightweight React-like solution with a smaller footprint and faster performance. This is not a React replacement nor was it ever intended to be. Our goal was to provide a similar interface to prevent having to learn yet another front-end library.
We aren't sure what this library will evolve into but we wanted to start with "good bones". Please help us define what this can be by opening some PRs or submitting ideas!
Fast Rendering
Virtual DOM for detecting deltas and isolating renders.
Minimalistic
Library makes use of only 3 primary functions.
Bundle Size
Library is extremely small, just 2.2k (gzipped)
No Dependencies
A standalone library with no dependencies.
Components
Allows you to build components with an encapsulated state.
React-like API
If you know how you use React then you already know how to use PowerJS.
If you would like to use JSX with PowerJS you'll need to install this Babel Plugin which will convert the JSX into a Virtual DOM. There's an example of this plugin config in the Todo app here.
PowerJS is provided as a UMD library to accommodate any loading method.
Included via script
<script src="power.js"></script>
// someFile.js
const { h, Component, render } = power;
// power.h, power.Component, power.render
You'll need to install PowerJS via NPM
npm install @power-js/core
Include via import
import Power from '@power-js/core';
Include via require
const Power = require('@power-js/core');
Here's an example of a simple counter component.
JSX:
import Power, { render, Component } from '@power-js/core';
class Counter extends Component {
render(){
return (
<div className="counter">
<p>Counter: {this.props.counter.toString()}</p>
<button click={() => { this.props.counter += 1; }}>+</button>
<button click={() => { this.props.counter -= 1; }}>-</button>
<button click={() => { this.props.counter = 0; }}>Reset</button>
</div>
)
}
}
render(<Counter counter={0} />, document.body);
JS:
import { h, render, Component } from '@power-js/core';
class Counter extends Component {
render() {
return (
h('div', {class: 'counter'},
h('p', null, `Counter: ${this.props.counter.toString()}`),
h('button', {click: () => { this.props.counter += 1; }}, '+'),
h('button', {click: () => { this.props.counter -= 1; }}, '-'),
h('button', {click: () => { this.props.counter = 0; }}, 'Reset')
)
)
}
}
const myCounter = new Counter({ counter: 0 });
render(myCounter, document.body);
The purpose of this repo is to continue to evolve PowerJS as an open source project driven by its contributors and communal support. We appreciate all the support we've received, and look forward to working with many new faces. To get started contributing just review our contribution guide, code of conduct and open a PR.
We have a Code of Conduct that we expect collaborators to adhere to. Please read it in its entirety so you understand our expectations of you and what is acceptable behavior.
Read our contributing guide to learn about our development process.
FAQs
A powerful JavaScript library for building web components.
The npm package @power-js/core receives a total of 0 weekly downloads. As such, @power-js/core popularity was classified as not popular.
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.