DEEP Database Library (deep-db)
DEEP Framework
is a full-stack web framework that abstracts web apps and web services from specific cloud providers.
This framework enables developers build cloud-native applications or platforms using
microservices architecture in a completely
serverless approach.
At this moment only Amazon Web Services is supported. Developers are encouraged to add support
for Microsoft Azure, Google Cloud Platform, and so on.
DEEP Framework is a core component of a larger ecosystem, called
Digital Enterprise End-to-end Platform.
Getting Started
DEEP Framework
can be used as a module in front-end or back-end. To learn more, scroll down to
What is DEEP Framework?
To see the power of DEEP Framework
, execute the following 4 simple steps in command line:
- Install DEEP CLI, also known as deepify:
npm install deepify -g
deepify is a collection of tools that empower developers and devops engineers to automate
the management of web apps built on top of DEEP ecosystem.
Note: If you want to use deepify
on Windows, please follow the steps from
Windows Configuration
before running npm install deepify -g
and make sure all npm
and deepify
commands are executed
inside Git Bash.
- Using deepify, dump locally the helloworld example:
deepify helloworld ~/deep-hello-world
deepify will clone the repository from GitHub and pull all the dependencies in one place.
- Using deepify, run locally the helloworld example:
deepify server ~/deep-hello-world -o
deepify launches a web server that can be used for local development, without making calls
to web services from cloud providers like AWS.
- Using deepify, deploy to AWS the helloworld example:
deepify deploy ~/deep-hello-world
deepify provisions the infrastructure and deploys the web app, empowering developers and
devops engineers to automate the process.
Note: Amazon CloudFront distribution takes up to 20 minutes to provision,
therefore don’t worry if it returns an HTTP error in the first couple of minutes.
To learn more about helloworld example, or other web apps that run in production, scroll down to
Who is using DEEP Framework?
Additional Notes
Note 1: To use DEEP Framework
globally, just run in command line:
npm install deep-framework -g
Note 2: Alternatively, to use DEEP Framework
as dependency, include it in package.json
file. For example:
{
"name": "say-hello-world",
"version": "0.0.1",
"description": "AWS Lambda that says hello to the world",
"dependencies": {
"deep-framework": "^1.x.x",
...
},
...
}
What is DEEP Framework?
DEEP Framework
is a nodejs package that is published on npmjs: https://www.npmjs.com/package/deep-framework.
If you are new to node and npm, check out how to install nodejs tutorial.
DEEP Framework
is a nodejs package. In fact it's a collection of nodejs packages, also known as
DEEP Abstracted Libraries
. Here below is the complete list:
Who is using DEEP Framework?
There are couple examples / web apps that are using DEEP Framework
at their core:
DEEP Hello World
DEEP Hello World (https://github.com/MitocGroup/deep-microservices-helloworld) is a web app
that show cases a full stack example of using DEEP Microservices in the context of Platform-as-a-Service.
Developers can either fork this repository or npm install deepify -g
(https://www.npmjs.com/package/deepify)
and run in the command line deepify helloworld ~/deep-hello-world
.
DEEP Todo App
DEEP Todo App (https://github.com/MitocGroup/deep-microservices-todo-app) is a web app inspired from
AngularJS TodoMVC Example (https://github.com/tastejs/todomvc/tree/master/examples/angularjs).
It reuses AngularJS module and integrates using DEEP Framework
to streamline development and deployment
using cloud-based web services.
DEEP Marketplace
DEEP Marketplace (https://www.deep.mg) is Software-as-a-Service, built on top of DEEP, that empowers customers
to choose functionality from listed microservices and deploy them together as an web app into their own
AWS accounts with just few clicks; as well as empowers developers to create and publish their microservices
and monetize them in similar approach to Apple's App Store.
How can I get involved?
Feedback
We are eager to get your feedback, so please use whatever communication channel you prefer:
Contribution
This project is open source, and we encourage developers to contribute. Here below is the easiest way to do so:
- Fork this repository in GitHub.
- Develop the feature in your repository. Make one or more commits to your repository in GitHub.
- Perform a pull request from your repository back into original repository in GitHub.
Make sure you update package.json
(or deepkg.json
, depends on the use case) and put your name and contact information in contributors section. We would like to recognize the work and empower every contributor in creative ways :)
Roadmap
Our short-to-medium-term roadmap items, in order of descending priority:
Feature | Details | Owner |
---|
Implement deep-search | Full text search service on top of Amazon CloudSearch and/or Amazon Elasticsearch Service | @alexanderc |
Implement RUM with deep-search and deep-logs natively | Add Real User Monitoring by logging all user actions and visualize them with an ELK stack | @mgoria |
Implement deep-security | Security service on top of Amazon IAM and/or Amazon Cognito | @mgoria |
Implement blue-green deployment | Deploy applications using deepify with zero downtime; Scalable to support multiple environments and multiple regions | @alexanderc |
Implement deep-db "eventual consistency" | Achieve "eventual consistency" by offloading data to SQS as the default option | @alexanderc |
Improve deep-db "strong consistency" | Achieve "strong consistency" by increasing Reads/Writes per second in runtime (as other option for special DB operations) | @mgoria |
Integrate deep-db with deep-cache natively | Cache fetched data by default using deep-cache library | @alexanderc |
Implement deep-notification | Push notification service on top of SNS that supports push to mobile devices, web browsers, email and sms. | @alexanderc |
Implement deep-queue | Queue data into SQS and/or Kinesis | @mgoria |
Implement deep-event | Event manager service using Lambda scheduling, Kinesis stream, Dynamo streaming, SQS, etc. | @mgoria |
Implement deep-cache | Cache service on top of Elasticache (Redis engine) inside deep-resource (e.g. AWS Lambda) | @alexanderc |
Improve documentation for each deep-* library | Update docs for deep libraries and development tools | @alexanderc @mgoria |
Changelog
Changelog files are located in /changelog
folder.
See CHANGELOG.md for latest changelog.
License
This repository can be used under the MIT license.
See LICENSE for more details.
This repository is being sponsored by:
Mitoc Group
What else is relevant?
Digital Enterprise End-to-end Platform
, also known as DEEP
, is low cost and low maintenance
Platform-as-a-Service powered by abstracted web services
from cloud providers like Amazon Web Services. This approach has been labeled as
Serverless Architecture.
Appendix A: Serverless Architecture
DEEP
is an ecosystem of DEEP Marketplace,
DEEP Framework and DEEP CLI,
also known as deepify. It enables developers build serverless applications
using abstracted services from cloud providers like Amazon Web Services.
Appendix B: DEEP Ecosystem
DEEP
aims to remove the heavy lifting from enterprise software through microservices architecture, where developers
(let’s label them lego producers
) focus only to build microservices or microapplications (let’s label them lego pieces
),
while the platform does the rest: comes pre-built and pre-scaled, low-cost and low-maintenance, very secure and very fast.
Customers (let’s label them lego consumers
) will go to the marketplace, choose the microservices they need and deploy them
as web apps into their own accounts on AWS (or other cloud providers).
In summary: We empower lego consumers to license curated lego pieces from a marketplace of lego producers.