npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

infeos

v0.1.33

Published

infeos is an EOSIO development, building, testing, and deployment framework based and using javascript, npm, eosjs and the EOSIO protocol

Downloads

104

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 commands

Find us on: Telegram | Twitter

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

Windows

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

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]