embark/packages/embark
Michael Bradley, Jr 7e00786ee8 build(deps): bump ganache-cli from 6.7.0 to 6.8.2
Also, in `dapps/tests/contracts` move the `this.timeout(0);` inside the
`it(...)` for the expensive gas esimation (involving
`SimpleStorage.methods.set`) because it otherwise doesn't seem to have an
effect on the default 15 second timeout.
2020-01-21 15:13:01 -06:00
..
bin build: implement a monorepo with Lerna 2019-02-04 14:28:49 -06:00
scripts refactor(embark): do not wrap mocha in a child process 2019-03-11 18:25:47 -04:00
src refactor(@embark/suggestions): move suggestions API into plugin 2020-01-20 11:35:29 +01:00
.babelrc.js refactor(@embark/embarkjs): move module into own package (#1945) 2019-10-14 16:05:17 +09:00
.npmrc build: implement a monorepo with Lerna 2019-02-04 14:28:49 -06:00
CHANGELOG.md chore(prerelease): 5.1.0-nightly.2 2020-01-21 00:12:55 +00:00
README.md update azure links 2020-01-16 16:28:49 -05:00
package.json build(deps): bump ganache-cli from 6.7.0 to 6.8.2 2020-01-21 15:13:01 -06:00
tsconfig.json refactor(@embark/suggestions): move suggestions API into plugin 2020-01-20 11:35:29 +01:00

README.md

Embark

npm Gitter Build Status Open PRs Closed PRs GitHub commit activity the past week, 4 weeks, year Coverage Status Dependabot Status

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.
$ npm -g install embark

See Complete Documentation.