This release is 54 versions behind 0.3.110 — the latest version of @paimaexample/explorer. Jump to latest
@paimaexample/explorer@0.3.50
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




JSR Score
0%
Published
2 months ago (0.3.50)
#!/usr/bin/env node const { createServer } = require("npm:http-server@^14.1.1"); const server = createServer({ root: __dirname + "/client/dist" }); const port = process.env.PAIMA_EXPLORER_PORT || 10590; server.listen(port, () => { console.log(`Paima Explorer at http://localhost:${port}`); });