
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
Hyperoop is OOP-style SPA micro-framework.
Under development
npm i --save hyperoop
See examples.
More advanced example is source code of our site hyperoop.github.io.
To run todo-hist example:
git clone https://github.com/HyperOOP/hyperoop-examples
cd hyperoop-examples/todo-hist
npm i && npm run serve
Then open localhost:10001 in browser. Or simply try it online
counterTypeScript code (try online):
import * as ui from 'hyperoop';
class Counter extends ui.Actions<{count: number}> {}
const counter = new Counter({ count: 0 });
const view = () => (
<div>
<h1>{counter.State.count}</h1>
<button onclick={() => counter.State.count--}>-</button>
<button onclick={() => counter.State.count++}>+</button>
</div>
);
ui.init(document.body, view, counter);
Use our official router
FAQs
OOP-style web micro-framework over hyperapp
The npm package hyperoop receives a total of 3 weekly downloads. As such, hyperoop popularity was classified as not popular.
We found that hyperoop 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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.