
Security News
Rust RFC Proposes a Security Tab on crates.io for RustSec Advisories
Rustâs crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.
A lightweight web back-end framework based on Bun , using pure ts + Bun Native API to achieve .
A lightweight web backend framework based on bun , implemented using pure ts + bun native.
Thanks to the fast bun native, issac has good performance.
Currently supports.
tip: bun provides first support for ts, which allows issac to get good type hints in js without a .d.ts file.
Since issac is based on bun Native implementation, issac can only be used in bun environment.
Use bun's package management tool (Recommended).
bun add issac
Using npm
npm install issac
Create a simple http/ws server with issac:
import { Issac } from 'issac'
const app = new Issac({
ws: {
// Configure the ws scheduler to escalate requests to ws.
// Any request that contains test: issac in the request header will be escalated to ws
scheduler: (req) => req.headers.get('test') === 'issac'
}
})
// Register the ws handler
app.ws({
open(ws) {
console.log('a new websocket!')
},
message(ws, message) {
ws.send(message + 'plus!')
}
})
// Register the http route
app.get('/test', (req, res) => {
// Return a piece of text
res.text('issac!')
})
// listen
app.listen(1145, () => {
console.log('listen on 1145!')
})
issac's API style is very express-like, so developers familiar with express can get started quickly.
FAQs
A lightweight web back-end framework based on Bun , using pure ts + Bun Native API to achieve .
We found that issac 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.

Security News
Rustâs crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.

Security News
/Research
Socket found a Rust typosquat (finch-rust) that loads sha-rust to steal credentials, using impersonation and an unpinned dependency to auto-deliver updates.

Research
/Security Fundamentals
A pair of typosquatted Go packages posing as Googleâs UUID library quietly turn helper functions into encrypted exfiltration channels to a paste site, putting developer and CI data at risk.