Skip to content
/ bebo Public
forked from borkdude/bebo

Run Clojure scripts on deno

Notifications You must be signed in to change notification settings

PlumpMath/bebo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bebo

Deno is a modern runtime for JavaScript and TypeScript. Go to the deno website to learn more.

This is a tool to run Clojure scripts on deno using SCI.

Install from CDN

To preserve fine-grained control per script invocation, you can use the run.ts script to invoke a ClojureScript (.cljs) file:

deno run --allow-net \
     https://cdn.jsdelivr.net/npm/[email protected]/run.ts \
     https://raw.githubusercontent.com/PlumpMath/bebo/main/examples/server/example.cljs

and install this invocation as a named tool:

deno install --name server-example --allow-net \
     https://cdn.jsdelivr.net/npm/[email protected]/run.ts \
     https://raw.githubusercontent.com/PlumpMath/bebo/main/examples/server/example.cljs

To install bebo as a script runner with full access:

$ deno install --allow-all --name bebo https://cdn.jsdelivr.net/npm/[email protected]/lib/bebo_main.js

Then run bebo on a local or remote .cljs file:

$ bebo run https://raw.githubusercontent.com/PlumpMath/bebo/main/examples/server/example.cljs
Listening on http://localhost:8080/

Compile

Deno supports a compile option which lets you create a standalone executable. This has the benefit of faster startup time. One disadvantage is that you have to specify all used dependencies up front. See it as an optimization when you're done developing your application.

To do this, create a runner.js:

import { runScript } from 'https://cdn.jsdelivr.net/npm/[email protected]/lib/bebo_core.js'

// Add all modules you are going to use within .cljs scripts. They will be bundled into the executable.
import "https://deno.land/[email protected]/http/server.ts"

// The .cljs script to be invoked:
await runScript(Deno.args[0]);

Then:

$ deno compile --allow-all -o runner runner.js

Then:

./runner examples/server/example.cljs

Build and run

$ npx shadow-cljs release bebo
$ deno run --allow-read --allow-net lib/bebo_main.js examples/server/example.cljs
Listening on http://localhost:8080/

About

Run Clojure scripts on deno

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Clojure 97.3%
  • TypeScript 2.7%