This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-14
Channels
- # adventofcode (36)
- # announcements (5)
- # atom-editor (2)
- # babashka (19)
- # beginners (98)
- # biff (7)
- # calva (25)
- # cider (1)
- # cljdoc (10)
- # clojure (70)
- # clojure-czech (1)
- # clojure-dev (14)
- # clojure-europe (79)
- # clojure-nl (1)
- # clojure-norway (8)
- # clojure-seattle (3)
- # clojure-uk (2)
- # clojurescript (28)
- # community-development (44)
- # core-typed (3)
- # cursive (2)
- # datalevin (5)
- # datascript (5)
- # datomic (1)
- # dev-tooling (12)
- # emacs (14)
- # honeysql (3)
- # humbleui (11)
- # introduce-yourself (1)
- # java (1)
- # kaocha (1)
- # lsp (3)
- # malli (21)
- # matcher-combinators (2)
- # nbb (7)
- # off-topic (15)
- # portal (12)
- # reitit (4)
- # releases (1)
- # shadow-cljs (59)
- # sql (8)
- # tree-sitter (3)
👋 Hi all, does anyone know if we have, in our community, something akin to Python’s python3 -m http.server
(née python2 -m SimpleHTTPServer
) — a command/library/tool that starts a webserver that serves the current dir as a website with little to no ceremony?
@aviflax Yes :) https://github.com/babashka/http-server You can install it with
bbin install org.babashka/http-server --mvn/version 0.1.11
if you have bbin
installed…let’s say my team members are likely to have bb
installed but not bbin
(I myself am not familiar with bbin
yet, I guess I’m out of touch 😬 ) — is this available as a pod? Maybe this is out of date, but pods are how I’ve tended to add functionality to bb
scripts, uh, on the fly, without additional ceremony or config files etc
you can also just type npx nbbserve
if node is installed (I made it to test out making an npx
command with nbb and it's come in very handy)
@U8LB00QMD cool, thanks!
@aviflax Yes :) https://github.com/babashka/http-server You can install it with
bbin install org.babashka/http-server --mvn/version 0.1.11
if you have bbin
installed