Guidelines
- Introduction
- Installation
- Quick Start
Guides
- Introductions
- Build local test node
- Smart Contract - ABI Files
- Smart Contract——JS Contract
- Deploy Contracts
- Test Contract
- Develop DApp Client
Smart Contracts
- Contract Introduction
- ABI File
- Database
- Account Authority
- Call In-contract
- Notification
System Contracts
- Resources
- Account
- Permission
Token Contracts
- Transfer
- Token
- Token Exchange
- Contract Sub-Wallet
Node Guide
- Node Introduction
- Add to nodes network
- Node Data Persistence
Access Guide
- FO 接入安全指南
Installation
Quick Installation
FIBOS supports the common UNIX operating systems such as Mac OSX, Linux and FreeBSD.
It is recommended to perform quick installation on the terminal by directly adopting the following commands:
Stable Version
1 | curl -s https://fibos.io/download/installer.sh | sh |
beta Version
1 | curl -s https://fibos.io/download/installer_beta.sh | sh |
After the installation, the FIBOS executable file is in the system directory of bin
, which can be used to view the FIBOS version:
1 | ~$ which fibos |
Common Commands
Directly press Enter on FIBOS to query version information as follows:
1 | ~$ fibos |
Create a folder called hello_fibos
so as to generate the configuration initialization of the file package.json
.
1 | $ cd hello_fibos |
Installation package
1 | $ fibos --install fibos.js or npm install fibos.js |
Upgrade
Re-executing the installation command will automatically overwrite the original fibos
executable file, then restart the fibos
service to complete the upgrade level.
Uninstall
Simply delete the fibos
executable file under /usr/local/bin/
.
1 | $ sudo rm /usr/local/bin/fibos |
👉 【Quick Start】