Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/infiniteXLabs/infeos
JavaScript & npm framework for EOSIO dApps development, building, deployment and testing using eosjs and the EOSIO protocol
https://github.com/infiniteXLabs/infeos
Last synced: 3 months ago
JSON representation
JavaScript & npm framework for EOSIO dApps development, building, deployment and testing using eosjs and the EOSIO protocol
- Host: GitHub
- URL: https://github.com/infiniteXLabs/infeos
- Owner: infinitex-tech
- License: mit
- Created: 2018-12-19T00:01:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-08T15:32:18.000Z (about 5 years ago)
- Last Synced: 2024-04-12T15:05:23.868Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 137 KB
- Stars: 31
- Watchers: 4
- Forks: 8
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-EOS - infeos - npm framework for development, building, deploying and unit testing EOSIO dApps (Language Support / JavaScript)
- awesome-eosio - infeos - JavaScript based framework for development, building, deploying and unit testing EOSIO dApps. (Developers / Libraries and Frameworks)
README
# infeos: The EOSIO universe in your hands
infeos is an EOSIO development, building, testing, and deployment framework based and using javascript, npm, eosjs and the EOSIO protocol.**infeos** is the easiest, fastest and the most straightforward way to develop EOSIO based dApps. Some of it's key features are:
1. Set up your development environment in less than 5 minutes and in less than 1 minute for each new project after the first one.
2. Starting a full local node in a matter of seconds with only one command and choosing your preferred network: EOS, Telos or Worbli.
3. Unit tests your EOSIO smart contracts using **javascript**.
4. Full control over your environment configurations and deployment setup
5. Optimized dApp project structure - with infeos we're introducing a new EOSIO dApp projects structure where you have one master smart contract that rule them all
6. With infeos, you don't need to be an EOSIO developer, neither blockchain developer to work with smart contracts. All back-ends and front-ends developers now have the power to work with you dApp on blockchain level in just learning a few commandsFind us on: [**Telegram**](https://t.me/infeos) | [**Twitter**](https://twitter.com/infeos_io)
### The universe message dashborard
---
- Full Documentation - **In Progress** (Check out the example template for details)
---# Pre-instalation
*If you already have these programs on your computer please continue with the actual installation*### Mac OS
- Download and install [Docker Desktop for Mac](https://docs.docker.com/docker-for-mac/install/)
- Install **Kitematic** for Mac OS - the best GUI to work with your containers
- Install [node.js](https://nodejs.org/en/)### Windows
- Download and install [Docker Desktop for Windows](https://docs.docker.com/docker-for-windows/install/)
- Download and install [Cygwin64](https://cygwin.com/install.html)
- Download and install git bash (if missing)After each installation setup your programs for use. That includes but not limited to accounts, login, configurations.
# Installation
To install infeos run the following command:
```
npm install infeos -g
```# Initialize
To initialize a new EOSIO project run the command below. It will automatically create a new project including example smart contracts, tests, configurations.
```
infeos init
```# Start local EOSIO node
If you're running the command for the first time it will take some time before the Docker image is downloaded (it's downloaded globally and only for this project). Once the image is available the node starts in a matter of seconds.
```
infeos run-node
```If you re-run the command a new fresh and clean node will be create replacing the old one.
# Compile
To compile your smart contract and to generate WASM & ABI files the following command:
```
infeos compile [abi]
```If you're deploying the example smart contract (universe.cpp) you can use the created abi for it from [here](https://gist.github.com/DimitarSD/9b3af2a3312b78fe4c0826018e7346ce)
# Deploy
When you the command below you'll be able to deploy your smart contract to the blockchain. You can find more details about the deployment script **deploy.js** inside the deployment folder. Once the process is complete an instance of the contract is returned in the code. You can use it for further development and testing.
```
infeos deploy
```# Test
Running the test command will execute all test located in the **test** folder. You have the option to pass a specific test file to be executed
```
infeos test [path]
```