All Projects → mempko → Firestr

mempko / Firestr

Licence: other
The Grass Computing Platform

Programming Languages

lua
6591 projects
cpp
1120 projects
cpp11
221 projects

Projects that are alternatives of or similar to Firestr

Satellite-Legacy
Satellite gives you peace of mind with end-to-end encryption without sacrificing quality. Stream in 4k, chat in 500kbs+, share 10GB files.
Stars: ✭ 46 (-86.02%)
Mutual labels:  decentralized, p2p, chat-application
Yjs
Shared data types for building collaborative software
Stars: ✭ 5,894 (+1691.49%)
Mutual labels:  collaboration, p2p, decentralized
Bitchatclient
Technitium Bit Chat, a secure, peer-to-peer, instant messenger!
Stars: ✭ 111 (-66.26%)
Mutual labels:  chat-application, p2p, decentralized
hfos-legacy
Hackerfleet Operating System
Stars: ✭ 28 (-91.49%)
Mutual labels:  decentralized, collaboration
pop
Run a point-of-presence within Myel, the community powered content delivery network.
Stars: ✭ 28 (-91.49%)
Mutual labels:  decentralized, p2p
namecoin-core
Namecoin full node + wallet based on the current Bitcoin Core codebase.
Stars: ✭ 425 (+29.18%)
Mutual labels:  decentralized, p2p
field-manual
The Offical User's Guide to OrbitDB
Stars: ✭ 178 (-45.9%)
Mutual labels:  decentralized, p2p
ipvpn
[WIP] Easy-to-use decentralized secure overlay private network (for any device)
Stars: ✭ 24 (-92.71%)
Mutual labels:  decentralized, p2p
bitcoin-kit-android
Comprehensive Bitcoin development library for iOS, implemented on Swift. SPV wallet implementation for Bitcoin, Bitcoin Cash, Litecoin and Dash blockchains. Fully compliant with existing standards and BIPs.
Stars: ✭ 102 (-69%)
Mutual labels:  decentralized, p2p
Layr
A decentralized (p2p) file storage system built atop Kademlia DHT that enforces data integrity, privacy, and availability through sharding, proofs of retrievability, redundancy, and encryption, with smart-contract powered incentive scheme
Stars: ✭ 90 (-72.64%)
Mutual labels:  decentralized, p2p
Meething
dWebRTC Video Meetings MESH/SFU hybrid using GunDB, MediaSoup and Beyond!
Stars: ✭ 303 (-7.9%)
Mutual labels:  p2p, decentralized
swarm-peer-server
🖧 A network swarm for creating secure P2P connections over BitTorrent DHT, DNS, and mDNS.
Stars: ✭ 41 (-87.54%)
Mutual labels:  decentralized, p2p
nvim
Repository for the Tandem NeoVim Plugin
Stars: ✭ 23 (-93.01%)
Mutual labels:  decentralized, collaboration
Horizon
A ZeroNet search engine
Stars: ✭ 15 (-95.44%)
Mutual labels:  decentralized, p2p
dynamic-data-and-capabilities
[ARCHIVED] Dynamic Data and Capabilities in IPFS Working Group
Stars: ✭ 57 (-82.67%)
Mutual labels:  decentralized, collaboration
Server
☁️ Nextcloud server, a safe home for all your data
Stars: ✭ 17,723 (+5286.93%)
Mutual labels:  collaboration, decentralized
Zeronet Kivy
Android client for ZeroNet
Stars: ✭ 279 (-15.2%)
Mutual labels:  p2p, decentralized
Peer Base
Build real-time collaborative DApps on top of IPFS
Stars: ✭ 208 (-36.78%)
Mutual labels:  collaboration, decentralized
Construct
This is The Construct
Stars: ✭ 218 (-33.74%)
Mutual labels:  collaboration, decentralized
awesome-orbitdb
Useful resources for using OrbitDB and building projects on it
Stars: ✭ 87 (-73.56%)
Mutual labels:  decentralized, p2p

Fire★ (Fire Star) 0.11.1

Documentation Status firestr

The Grass Computing Platform

Fire★ is a platform for creating and sharing P2P software. This is not cloud software, but grass software. You can touch it and shape it.

Fire★ provides a built in application editor where you can program in real time with others. Apps are written in the Lua programming language using an API designed for writing P2P applications.

Sharing an application with another is as simple as using it in a conversation. They can install it on their system with one click and use it in their own conversations. Any program you get you can open in the application editor to modify and share.

The hard part of setting up a P2P connection (NAT transversal, UDP hole punching, etc) is done for you so you can concentrate on building applications that work together without a central server.

All communication is encrypted between peers to provide a safe environment and no communication is routed through a server.

WARNING

The software is in development. The security of the software has not been audited so use AT YOUR OWN RISK.

If you are a security expert, please contribute.

The encryption used is RSA with 4k keys for handshaking and AES where Diffie-Hellman is used to create an ephemeral key for a connection session.

Organization

Fire★ is written using C++11 and requires a fairly modern compiler. It should work with the latest gcc, clang, and visual studio.

The main directory is src. Each subdirectory is a library and the main application is in src/firestr

The project uses CMake as the meta-build configuration.

Build Dependencies

  • gcc 6.3+
  • CMake
  • Qt 5
  • Boost 1.54+
  • Botan 1.10+
  • libopus
  • libsnappy
  • uuid
  • libssl
  • libgmp

Building Using Vagrant

Install vagrant on your machine. Open a terminal and run:

$ vagrant up
$ vagrant ssh
$ startxfce4&

If asked, password is 'vagrant'.

Open terminal in the VM and run:

$ cd /vagrant
$ mkdir build
$ cd build
$ cmake ..
$ make -j2

You can then run two test instances:

$ cd src/firestr/
$ ./firestr --home test1 &
$ ./firestr --home test2 &

License GPLv3

Copyright (C) 2017 Maxim Noah Khailo

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].