jesterwithplugins

A sinatra-like web framework for Nim with plugins.

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version Unknown
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:24

Installation

nimble install jesterwithplugins
choosenim install jesterwithplugins
git clone https://github.com/JohnAD/jesterwithplugins/

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
jesterwithplugins - - - - - - -

Source

Repository https://github.com/JohnAD/jesterwithplugins/
Homepage https://github.com/JohnAD/jesterwithplugins/
Registry Source nimble_official

README

🃏 Jester (with plugins) 🃏

The sinatra-like web framework for Nim. Jester provides a DSL for quickly creating web applications in Nim.

This particular version is a fork of the main-line jester for the testing of the "plugin" functions. It will eventually be merged back into jester. If you are not using the plugins, I recommend using the main jester library. See https://nimble.directory/pkg/jester

Install

It is best to install using the nimble tool:

$ nimble install jesterwithplugins

Example Of Use

# example.nim
import jesterwithplugins

routes:
  get "/":
    resp "<html><body><h1>Hello World!</h1></body></html>"

Compile and run with:

$ nim c -r example.nim

View with a browser at: localhost:5000

[WIP] Plugins

For using plugins, see plugins.

To develop a plugin, see plugin development.

Further documentation

TBD