Here are
83 public repositories
matching this topic...
A full stack web framework written in janet
Updated
Aug 10, 2021
Clojure
A powerful new shell that uses the janet programming language for both the implementation and repl.
A convenient reader for the ESV translation of the bible
Rust high level bindings for Janet
Updated
Aug 11, 2021
Rust
A janet http client library
janet wrapper around libcurl
a short typing game made with janet lisp
A document generation tool for Janet projects
Framework for real-time applications and APIs written in Janet with love
Updated
Feb 11, 2021
Shell
Janet redis bindings based on hiredis
A collection of all things written in Janet
Janet bindings for GitHub's fork of cmark
A database library for janet
Updated
Jan 27, 2021
Clojure
A testing library for janet
A TOML parser written in Janet
A utility library for Janet and janet-pq.
A question and answer site for janet
Updated
May 9, 2020
Clojure
A static site generator in Janet
Simple general router for Janet programming language
Updated
Feb 10, 2020
Shell
A grab-bag of functions related to dates and times for the Janet language.
A multimethod library for Janet
Persistent immutable data structures for Janet
Janet is a powerful python project manager that will auto-install pip packages when a .py file is saved and generate a requirements.txt file automatically, it will also monitor all your scripts for new packages and install them in the background.
Updated
Dec 22, 2020
Python
A bencode library for Janet
A file watching module for Janet
Build a hosts (/etc/hosts) file from multiple sources.
Updated
Jun 15, 2021
Batchfile
Improve this page
Add a description, image, and links to the
janet
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
janet
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
Add a new macro,
each-is
:each-is forms &opt note
forms
should be a tuple or array of assertion forms, of the same kind understood byis
.(each-is @[foo bar baz] "note")
is equivalent to:original issue text:
(is @[foo bar baz] note)
would be equivalent to(is foo note) (is bar note) ...