
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.
Tiny Bun‑first full‑stack framework — build UI (SSR/CSR) and APIs with one type‑safe DSL.
docs/getting-started.md
docs/cli.md
docs/ssr-csr.md
docs/fe-build.md
docs/api.md
docs/ui.md
docs/migration.md
# Install deps
bun install
# Run an example (SSR + CSR assets)
hipst serve examples/counter.app.ts --port 3000
# Build (SSR HTML + CSR assets): emits index.html + app.mjs (+ app.css) and supporting bundles
hipst build examples/counter.app.ts --out dist/counter-fe
# Build (CSR-only HTML): emits index.html and supporting bundles
hipst build examples/counter.app.ts --client --out dist/counter-fe-client
Create main.ts
:
import { server, api, html, ui } from "hipst";
const App = html()
.title("Hello Hipst")
.meta("description", "Minimal example")
(
ui("div").padding(24)(
ui("h1")("Hello Hipst"),
ui("button")
.state("count", 0)
.onClick(({ state }) => { state.count++; })
(({ state }) => `Clicked ${state.count} times`)
)
);
const Api = api("/api")
.get(({ res }) => res("Hello Hipst"))
server()
.route(Api)
.route(App)
.listen(3000, () => console.log("server is running on *:3000"))
Serve locally:
hipst serve app.ts
Build static assets (SSR HTML + CSR assets):
hipst build app.ts --out dist/app
package.json
for runnable examples (e.g., example:counter
, example:static
).FAQs
Full-stack framework
The npm package hipst receives a total of 78 weekly downloads. As such, hipst popularity was classified as not popular.
We found that hipst demonstrated a healthy version release cadence and project activity because the last version was released less than 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.