Digital-Currency alternatives and similar software solutions
Based on the "Misc/Other" category.
Alternatively, view Digital-Currency alternatives based on common mentions on social networks and blogs.
-
Monica
Personal relationship manager, and a new kind of CRM to organize interactions with your friends and family. -
CyberChef
Perform all manner of "cyber" operations within a web browser such as AES, DES and Blowfish encryption and decryption, creating hexdumps, calculating hashes, and much more. -
snipe-it
A free open source IT asset/license management system built in PHP on Laravel 5.2 and Bootstrap 3. -
google-webfonts-helper
A Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets. -
MindsDB
MindsDB is an open source self hosted AI layer for existing databases that allows you to effortlessly develop, train and deploy state-of-the-art machine learning models using standard queries. -
blynk
Platform with iOs and Android apps to control Arduino, ESP8266, Raspberry Pi and similar microcontroller boards over the Internet. -
Ombi
A content request system for Plex/Emby, connects to SickRage, CouchPotato, Sonarr, with a growing feature set. -
Reactive Resume
A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. -
Revive Adserver
World's most popular free, open source ad serving system. Formerly known as OpenX Adserver and phpAdsNew. -
King Phisher
King Phisher is a tool for testing and promoting user awareness by simulating real world phishing attacks. -
ytdl-webserver
Docker-ready webserver for downloading youtube videos. -
cState
Static status page for hyperfast Hugo. Clean design, minimal JS, super light HTML/CSS, high customization, optional admin panel, read-only API, IE8+. Best used with Netlify, Docker. -
EasyBook Project
Book publishing as easy as it should be. -
ViMbAdmin
Provides a web based virtual mailbox administration system to allow mail administrators to easily manage domains, mailboxes and aliases. -
Para
Para is a flexible and modular backend framework/server for object persistence, API development and authentication. -
How Secure Is My Password
Rather than just saying a password is "weak" or "strong", How Secure is My Password? lets your users know how long it would take someone to crack their password. -
visualCaptcha
A configurable captcha solution, focusing on accessibility & simplicity whilst maintaining security. -
DomainMOD
An application to manage your domains and other internet assets in a central location. DomainMOD includes a Data Warehouse framework that allows you to import your WHM/cPanel web server data so that you can view, export, and report on your data. -
GeneWeb
GeneWeb is an open source genealogy software written in OCaml. It comes with a Web interface and can be used off-line or as a Web service. -
Notica
Lets you send browser notifications from your terminal to your desktop or phone. No installation or registration is required. -
MalwareMultiScan
Self-hosted VirusTotal-like for scanning files with multiple antiviruses running in a Docker. -
CrushPaper
Research the web for relevant sources, save quotations from them to CrushPaper and then combine them with your own insights into a paper. -
Anchr
Anchr is a toolbox for tiny tasks on the internet, including bookmark collections, URL shortening and -
Web fonts repository
Simple webfont hosting. Google Fonts alternative for your own fonts. -
Trello Burndown
An easy to use SCRUM burndown chart for Trello boards. -
PassCheck
A web application featuring some handy password tools, including a password generator, strength checker and HaveIBeenPwned breach checker. -
DailyTxT
Encrypted Diary Web-App to save your personal memories of each day. Includes a search-function and encrypted file-upload.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Digital-Currency or a related project?
README
PLEASE NOTE
This is an early version of the final Web App. DEMO WEBSITE : https://tonken.glitch.me/
Digital-Currency
Create your own private Self-Hosted Digital Currency. This Web App require MongoDB
1 - Clone the repo
git clone https://github.com/Icesofty/Digital-Currency.git
2 - Install it
npm i
You need to create a .env file into the root folder and put SECRET=YOUR_SUPER_SECRET_PHRASE_HERE in it
3 - Launch it
node app.js
Server started at port 3000
Access it on http://localhost:3000/
4 - Customize it
You can change the demo-1.ejs and the demo-2.ejs file if you want to. If you do so, don't forget to change the content on home.ejs (Lines 130 to 145).
You can also customize your app.js : Color theme
const colorTheme = 'purple';
Default amount of Currency when a new user register (recommend 0)
const defaultTokens = 50;
Name and symbol of your Currency
const nameOfYourToken = 'Tonken';
const tokenSymbol = 'TKN';
Public or private currency
const publicRegister = true;
Name of your MongoDB
const nameDB = 'tonkenDB';
Creating Admin user
You need to create an Admin user. Change the value of admin: false to true on the users collection in MongoDB
{
"_id" : ObjectId("5e2d57b1a0c1870e6c736d16"),
"username" : "Icesofty",
"email" : "[email protected]",
"tokens" : 50,
"admin" : true,
"salt" : "...",
"hash" : "...",
"__v" : 0
}
You can then access your admin panel here : http://localhost:3000/admin