
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Make HyperText great again!
Minimal Proof of Concept implementation of HTMX.
sample/getting-started
directory.)get.html
: partial page for GET request<p><strong>GET response</strong></p>
post.html
: partial page for POST request<p><strong>POST response</strong></p>
index.html
: initial full page<!doctype html>
<html>
<head>
<script src="hx.js" defer></script>
</head>
<body>
<a hx-get"/get.html" hx-target="#result">GET</a>
<form hx-post="/post.html" hx-target="#result">
<button type="submit">POST</button>
</form>
<div id="result"></div>
</body>
</html>
$ npx serve ./samples/getting-started
$ open http://localhost:3000
Open the Web Insepector
» Network
and reload page and then see what happens.
That's all folks!
hx-trigger
, hx-get
, hx-post
, hx-put
, hx-delete
, hx-patch
, hx-target
, hx-select
, hx-swap
May the SOURCE be with you...
FAQs
minimal proof-of-concept implementation of HTMX
We found that @iolo/hx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.