# iniquity **Repository Path**: mirrors_shlomif/iniquity ## Basic Information - **Project Name**: iniquity - **Description**: A re-imagining of the iconic BBS software. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-22 - **Last Updated**: 2026-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Iniquity This is the re-imagining of the iconic Iniquity Bulletin Board Software. ```text -$a. ------------------ .a$ ---------------------------- %$!, ----------------% `$¸ .%$$^¸$$aa. .¸$` . .a$a$$. `¸$% $a$. . -.aaa$ $$$$'- $$$$$.- $aaa. -.a%$^"$$aa -- .$$$$$'- $$a. $aaa. `$,$ ----------% ;$$$$',a$a$ d$%$$$$$,'$$$$;$$$$$ $$$$$., $$%$$" d$a$$ '$$$$; $$$ .a%$ $$a :$$$$;$$$$%; Z$$$$$$$$;$$$$:$$$$$. $$$$^$,;$$&$$ Z$$$$,;$$$$.a$$$a..$$$ $$$ .$$$$ `$$$$. $$$%$$$' $$$$.`$$$$ $$%$$$$ `$$$$. $%$$$ $$$$""$$$" $$$$: a$$ `$$$a.$$%$ $$$$$$';a$$$` `¸$$aa$$$$&$': `$$$$a. $$$$'a$$$`.$$'$ $$$$; $$$ %-----.------ $$$$'--------------- $$%$$' -- `¸$$$$$%$¸' ---- $$¸$a. `"$&$$//$%$ dz . .:'¸' . . $$$$' . . `¸$$$$y. `$$& %--------- a`-----------.--------- $$¸' -----.------------.---------------- $$$ . !a . . . . .:' . . . .:.a$$$¸ . . '$a, . a` . 'a . . s` . . . . ¸$Aa . !a a! . . .. %s .s . ¸¸' . . '$$Aa.aA$$' . . `!$%a.a%//$ ============================================================================== t h e i n i q u i t y b u l l e t i n b o a r d s y s t e m ============================================================================== ``` [![Release](https://github.com/iniquitybbs/iniquity/actions/workflows/release.yml/badge.svg?branch=master)](https://github.com/iniquitybbs/iniquity/actions/workflows/release.yml) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=iniquitybbs_iniquity&metric=alert_status)](https://sonarcloud.io/dashboard?id=iniquitybbs_iniquity) [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/) [![Discord](https://img.shields.io/discord/499484963587096597?label=discord)](https://discord.gg/UsyvrSZ) ## Introduction ### Some guidng thoughts surrounding the idea of a new Iniquity BBS - A BBS software framework that is geared towards developers and modders. - Make it easy for sysops to develop and deploy BBS applications. - Easily network files, messages and other forms of communication between other BBS applications. - What you see in xterm, NetRunner, SyncTerm, EtherTerm or qodem is what you see in a web browser. - Though the ability to do interesting things specific to terminal/web should exist. ## Getting started ### Your development environment should contain something like this, or similar - macOS / Windows / Linux _required_ - These modern operating systems are currently supported. - Docker Desktop for macOS / Windows or Docker Machine _required_ - The Iniquity BBS runtime is executed inside of a Docker container for portability. - Node.js & NPM _required_ - The Node community tools are used for TypeScript transpiling and Iniquity package management. - Visual Studio Code _recommended_ - This repository is specifically tuned to take full advantage of this IDE. - Moebius _recommended_ - The ideal choice for working with ANSI/ASCII/PETSCII/AMIGA artwork. ### First, clone this repository somewhere on your system ```bash git clone https://github.com/iniquitybbs/iniquity.git ``` ### Inside of the iniquity directory, install the project dependencies ```bash npm install ``` ### Start iniquity ```bash npm start ``` ## Example ```typescript const iq = new Iniquity({ basepath: "/iniquity/core/assets/" }) const welcomeArt = iq.artwork({ filename: Assets.sm_iniq2 }) welcomeArt.render({ clearScreenBefore: true, speed: 100 }) iq.print({ text: `You just connected to an iniquity bbs. The artwork you are seeing above is called ${welcomeArt.filename} It's still pretty new. Likely has bugs. Real talk, it's not even finished. But maybe you'll still think it's cool.` .newlines() .color("background red") .center() }).pause({ colorReset: true, newlines: 2, center: true }) iq.artwork({ filename: Assets.we_iniq3 }).render({ clearScreenBefore: false }) iq.say("You've connected to a prototype of the new Iniquity BBS Development Platform.".newlines(2).color("bright red").center()).pause() iq.artwork({ filename: Assets.d_iniq1 }).render({ speed: 100 }) const login = iq.ask("What is your login: ".newlines(1)) switch (login) { case "new": case "signup": iq.artwork({ filename: Assets.newuser1 }).render({ clearScreenBefore: true }) let newUser = iq.user({ name: iq.ask("What would you like your handle to be?".newlines(2).color("white")), password: iq.ask("And your password?".newlines(2).color("white")) }) iq.say(`Welcome ${newUser.name}. And goodbye!`.newlines().center()) iq.disconnect() break default: if (iq.user({ name: login, password: iq.ask("And your password?".newlines(2).color("white")) })) { alert("somethingsync") } iq.pause() iq.artwork({ filename: Assets.d_iniq1 }).render({ clearScreenBefore: true }) break } ``` [Want to learn more? Read the docs!](https://iniquitybbs.org/modules/Core.html) ## Discord [Join us on Discord.](https://discord.gg/UsyvrSZ) ## Issues [Share your ideas, feedback and bug reports.](https://github.com/iniquitybbs/iniquity/issues) ## Documentation [Read the Iniquity documentation.](https://iniquitybbs.org/modules.html)