
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
browsable-object
Advanced tools
A decorator, inheritance mechanism, and handler for making Cloudflare Durable Objects browsable and queryable via SQL. Forked from [@outerbase/browsable-durable-object](https://github.com/outerbase/browsable-durable-object) to change functionality. See th
A decorator, inheritance mechanism, and handler for making Cloudflare Durable Objects browsable and queryable via SQL. Forked from @outerbase/browsable-durable-object to change functionality. See the original for usage patterns.
Added features compared to original:
validator
browsableRequest
allows directly plugging this into your worker@Browsable
is used, no need for additional config (works even in localhost!)Easiest Usage:
@Browsable({
basicAuth: { username: "admin", password: env.SECRET },
// dangerouslyDisableAuth: true,
// disableStudio:true,
// validator: createReadOnlyValidator(),
})
export class MyDO extends DurableObject {
//... your DO
}
type Env = { SECRET: string; MyDO: DurableObjectNamespace };
export default {
async fetch(request: Request, env: Env): Promise<Response> {
const url = new URL(request.url);
const firstSegment = url.pathname.split("/")[1];
if (!firstSegment) {
return new Response(
`Usage: /{id}/studio for the studio, raw queries at /{id}/query/raw`,
);
}
// Forward the request to the specified durable object
const stub = env.MyDO.get(env.MyDO.idFromName(firstSegment));
return stub.fetch(request);
},
};
npm install browsable-object
Check https://github.com/outerbase/browsable-durable-object for other usage patterns
remote-sql-cursor
'exec' function works with the browsableRequest
middleware.FAQs
A decorator, inheritance mechanism, and handler for making Cloudflare Durable Objects browsable and queryable via SQL. Forked from [@outerbase/browsable-durable-object](https://github.com/outerbase/browsable-durable-object) to change functionality. See th
The npm package browsable-object receives a total of 6 weekly downloads. As such, browsable-object popularity was classified as not popular.
We found that browsable-object 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.