All Projects → streamr-dev → network-monorepo

streamr-dev / network-monorepo

Licence: other
Monorepo containing all the main components of Streamr Network.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to network-monorepo

network
Monorepo containing all the main components of Streamr Network.
Stars: ✭ 522 (+134.08%)
Mutual labels:  protocol, peer-to-peer, decentralized, pubsub, streamr, streamr-client
Gun
An open source cybersecurity protocol for syncing decentralized graph data.
Stars: ✭ 15,172 (+6703.59%)
Mutual labels:  protocol, peer-to-peer, decentralized
streamr-client-javascript
JS library for interacting with Streamr APIs: publishing and subscribing to data, creating streams, etc.
Stars: ✭ 35 (-84.3%)
Mutual labels:  decentralized, pubsub, streamr
core-api
Streamr Core backend
Stars: ✭ 52 (-76.68%)
Mutual labels:  decentralized, pubsub, streamr
Purple
Official Rust implementation of the Purple Protocol
Stars: ✭ 85 (-61.88%)
Mutual labels:  protocol, peer-to-peer, decentralized
ipfs-chat
Real-time P2P messenger using go-ipfs pubsub. TUI. End-to-end encrypted texting & file-sharing. NAT traversal.
Stars: ✭ 84 (-62.33%)
Mutual labels:  peer-to-peer, decentralized, pubsub
Erpc
An efficient, extensible and easy-to-use RPC framework.
Stars: ✭ 2,274 (+919.73%)
Mutual labels:  protocol, peer-to-peer
Protocol
Loopring Protocol Smart Contract on Ethereum
Stars: ✭ 220 (-1.35%)
Mutual labels:  protocol, decentralized
trystero
🤝 Serverless WebRTC matchmaking for painless P2P — Make any site multiplayer in a few lines — Use BitTorrent, IPFS, or Firebase
Stars: ✭ 512 (+129.6%)
Mutual labels:  peer-to-peer, decentralized
Lbry Sdk
The LBRY SDK for building decentralized, censorship resistant, monetized, digital content apps.
Stars: ✭ 7,169 (+3114.8%)
Mutual labels:  protocol, decentralized
tool-db
A peer-to-peer decentralized database
Stars: ✭ 15 (-93.27%)
Mutual labels:  peer-to-peer, decentralized
geesome-node
🦈 Your self-hosted decentralized Messenger, Social network, Media file storage on top of IPFS! Freely communicate in encrypted chat groups, share images, video, text or any data without a risk of censorship or blocking.
Stars: ✭ 90 (-59.64%)
Mutual labels:  peer-to-peer, decentralized
Offset
Offset payment engine
Stars: ✭ 152 (-31.84%)
Mutual labels:  protocol, decentralized
sublime
Repository for the Tandem Sublime Plugin
Stars: ✭ 22 (-90.13%)
Mutual labels:  peer-to-peer, decentralized
ipfs-pubsub-chatroom
Simple IPFS Pubsub chatroom built on React
Stars: ✭ 45 (-79.82%)
Mutual labels:  decentralized, pubsub
dispersy
The elastic database system. A database designed for P2P-like scenarios, where potentially millions of computers send database updates around.
Stars: ✭ 81 (-63.68%)
Mutual labels:  peer-to-peer, decentralized
sprawl
Alpha implementation of the Sprawl distributed marketplace protocol.
Stars: ✭ 27 (-87.89%)
Mutual labels:  peer-to-peer, decentralized
go-peer
Library for create secure and anonymity decentralized networks.
Stars: ✭ 74 (-66.82%)
Mutual labels:  peer-to-peer, decentralized
Fluence
Peer-to-peer computing protocol and licensing system
Stars: ✭ 453 (+103.14%)
Mutual labels:  protocol, decentralized
Lnd
Lightning Network Daemon ⚡️
Stars: ✭ 5,623 (+2421.52%)
Mutual labels:  protocol, peer-to-peer

Streamr

Network

Monorepo containing all the main components of Streamr Network.

Packages

User-Facing

Internal

NPM scripts

NodeJS 16.13.x is the minimum required version. NodeJS 18.13.x, NPM 8.x and later versions are recommended.

Monorepo is managed using npm workspaces.

Installation on an Apple Silicon Mac requires additional steps, see install-on-apple-silicon.md.

Important: Do not use npm ci or npm install directly in the sub-package directories.

Bootstrap all sub-packages

The go-to command for most use cases.

To install all required dependencies and build all sub-packages (linking sub-packages together as needed):

# from top level
npm run bootstrap

Bootstrap a single sub-package

To install the required dependencies and build a specific sub-package:

# from top level
npm run bootstrap-pkg --package=$PACKAGE_NAME

Install dependencies only

To only install required dependencies and link sub-packages together (and skip build phase):

# from top level
npm ci

Build

To build all sub-packages:

# from top level
npm run build

Build a sub-package

To build a specific sub-package:

# from top level
npm run build --workspace=$PACKAGE_NAME

Clear caches and built files

To clear all caches and remove the dist directory from each sub-package:

# from top level
npm run clean-dist

Clean all

To removes all caches, built files, and node_modules of each sub-package, and the top-level node_modules:

# from top level
npm run clean

Install git hooks

To install git hooks (e.g. Husky for conventional commit validation):

npm run install-git-hooks

Add a dependency into a sub-package

Manually add the entry to the package.json of the sub-package and run npm run bootstrap-pkg $PACKAGE_NAME.

Alternatively, run:

npm install some-dependency --workspace=$PACKAGE_NAME

List active versions & symlinks

Check which sub-packages are currently being symlinked.

# from top level
npm run versions

This lists sub-packages & their versions on the left, linked sub-packages are columns. If the package on the left links to the package in the column, it shows a checkmark & the semver range, otherwise it shows the mismatched semver range and prints a warning at the end. It prints the version ranges so you can double-check that they're formatted as you expect e.g. ^X.Y.Z vs X.Y.Z

image

Releasing

utils, test-utils, protocol, network-tracker, network-node, client, cli-tools

All the above packages should be released at the same time.

  1. git checkout main
  2. git pull
  3. Change all versions from package.json (and interlinked dependencies) to next version.
  4. npm run clean && npm install && npm run build && npm run versions
  5. Look at the output of the above and ensure all versions are linked properly (i.e. no yellow or red markers)
  6. Update client and cli-tool CHANGELOG.md
  7. If releasing a major / minor version, update API docs link in packages/client/README.md.
  8. Add relevant files to git staging
  9. git commit -m "release(client, cli-tools): vX.Y.Z"
  10. git tag client/vX.Y.Z
  11. git tag cli-tools/vX.Y.Z
  12. Push to main git push origin
  13. Push to tag git push origin client/vX.Y.Z
  14. Push to tag git push origin cli-tools/vX.Y.Z
  15. At this point we are to do the actual release
  16. Clean and rebuild project with npm run clean && npm run bootstrap
  17. Then we do actual publishing of packages:
cd packages/utils
npm publish --access public

cd ../..

cd packages/test-utils
npm publish --access public

cd ../..

cd packages/protocol
npm publish --access public

cd ../..

cd packages/network
npm publish --access public

cd ../..

cd packages/network-tracker
npm publish --access public

cd ../..

# Publishing client is a bit more complicated
cd packages/client
npm run build-production
cd dist
npm publish

# Generate & upload API docs (if a major/minor version update)
cd ..
npm run docs
aws s3 cp ./docs s3://api-docs.streamr.network/client/vX.Y --recursive --profile streamr-api-docs-upload

cd ../..

cd packages/cli-tools
npm publish --access public

broker

Broker is released independently of other packages because it follows its own versioning for the time being.

git checkout main
cd packages/broker
npm version <SEMVER_OPTION>
git add package.json
git commit -m "release(broker): vX.Y.Z"
git tag broker/vX.Y.Z
git push origin
git push origin broker/vX.Y.Z

npm run build
npm publish
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].