Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/embarklabs/embark
Framework for serverless Decentralized Applications using Ethereum, IPFS and other platforms
https://github.com/embarklabs/embark
blockchain dapp decentralized ethereum framework ipfs serverless smart-contracts swarm whisper
Last synced: 3 days ago
JSON representation
Framework for serverless Decentralized Applications using Ethereum, IPFS and other platforms
- Host: GitHub
- URL: https://github.com/embarklabs/embark
- Owner: embarklabs
- License: mit
- Created: 2015-05-24T13:10:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-07-30T14:41:38.000Z (3 months ago)
- Last Synced: 2024-10-28T12:19:34.984Z (11 days ago)
- Topics: blockchain, dapp, decentralized, ethereum, framework, ipfs, serverless, smart-contracts, swarm, whisper
- Language: JavaScript
- Homepage: https://framework.embarklabs.io/
- Size: 86.4 MB
- Stars: 3,792
- Watchers: 135
- Forks: 495
- Open Issues: 134
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-web3 - Embark - The all-in-one developer platform for building and deploying decentralized applications. (Software Development / Development Environment)
README
![Embark](https://github.com/embarklabs/embark/raw/master/header.jpg)
[![npm](https://img.shields.io/npm/dm/embark.svg)](https://npmjs.com/package/embark)
[![Gitter](https://img.shields.io/gitter/room/embark-framework/Lobby.svg)](https://gitter.im/embark-framework/Lobby)
[![Build Status](https://dev.azure.com/embark-framework/Embark/_apis/build/status/embarklabs.embark?branchName=master)](https://dev.azure.com/embark-framework/Embark/_build/latest?definitionId=2&branchName=master)
![Open PRs](https://img.shields.io/github/issues-pr-raw/embarklabs/embark.svg)
![Closed PRs](https://img.shields.io/github/issues-pr-closed-raw/embarklabs/embark.svg)
![GitHub commit activity the past week, 4 weeks, year](https://img.shields.io/github/commit-activity/y/embarklabs/embark.svg)
[![Coverage Status](https://coveralls.io/repos/github/embarklabs/embark/badge.svg)](https://coveralls.io/github/embarklabs/embark)
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=embarklabs/embark)](https://dependabot.com)What is Embark
======Embark is a framework that allows you to easily develop and deploy Decentralized Applications (DApps).
A Decentralized Application is a serverless html5 application that uses one or more decentralized technologies.
Embark currently integrates with EVM blockchains (Ethereum), Decentralized Storages (IPFS), and Decentralized communication platforms (Whisper and Orbit). Swarm is supported for deployment.
With Embark you can:
**Blockchain (Ethereum)**
* Automatically deploy contracts and make them available in your JS code. Embark watches for changes, and if you update a contract, Embark will automatically redeploy the contracts (if needed) and the dapp.
* Contracts are available in JS with Promises.
* Do Test Driven Development with Contracts using Javascript.
* Keep track of deployed contracts; deploy only when truly needed.
* Manage different chains (e.g testnet, private net, livenet)
* Easily manage complex systems of interdependent contracts.**Decentralized Storage (IPFS, Swarm)**
* Easily Store & Retrieve Data on the DApp through EmbarkJS. Including uploading and retrieving files.
* Deploy the full application to IPFS or Swarm.
* Import and deploy contracts hosted on Swarm.**Decentralized Communication (Whisper, Orbit)**
* Easily send/receive messages through channels in P2P through Whisper or Orbit.**Web Technologies**
* Integrate with any web technology including React, Foundation, etc..
* Use any build pipeline or tool you wish, including grunt, gulp and webpack.```Bash
$ npm -g install embark
```See [Complete Documentation](https://framework.embarklabs.io/docs/).