Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iurimatias/embark-framework
Framework for serverless Decentralized Applications using Ethereum, IPFS and other platforms
https://github.com/iurimatias/embark-framework
blockchain dapp decentralized ethereum framework ipfs serverless smart-contracts swarm whisper
Last synced: 3 months ago
JSON representation
Framework for serverless Decentralized Applications using Ethereum, IPFS and other platforms
- Host: GitHub
- URL: https://github.com/iurimatias/embark-framework
- Owner: embarklabs
- License: mit
- Created: 2015-05-24T13:10:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T08:02:37.000Z (almost 2 years ago)
- Last Synced: 2024-05-22T11:13:59.367Z (6 months 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,788
- 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-ethereum - Embark - Embark is a framework that allows you to easily develop and deploy Decentralized Applications (DApps). (Frameworks / Text)
- awesome-dapps - Embark - Embark is a framework that allows you to easily develop and deploy Decentralized Applications (Developer Tools / Research)
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/).