Skip to content

microverse-network/quickstart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Microverse Quickstart

Here we are going to walkthrough a basic Node.js application.

First, we need to add some common dependencies.

Let's create the executable script.

bin/quickstart.js

require('@microverse-network/core/node')
require('@microverse-network/core/plugins-standard')

const Module = require('@microverse-network/core/module')
global.module = new Module({ id: 'quickstart' })

This script will instantiate a new instance of the Module class with a given id. Every instance having this same id will be able to communicate each other by finding each others address on the tracker.

This quickstart is just showing the essential requirements. You can look at database module for a more advanced implementation.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published