Arupex is a Serverless/Server framework for NodeJS It allows you to build a serverless application for your needs, but also allows you to wrap that with a http server if need be
Check out our Documentation
- Minimizing Boilerplate work
- Making Testing easier on Developers
- Making Writing Mocks a thing of the past
- Simplifying Workflows
- Making Dependency Injection simple and elegant
- Making Tracing and Metrics automatic!
- Make Rest Documentation Automatic!
- Making i18n such as sorting easier/faster
├── DataServiceUtils
│ └── DataServiceUtil.js
├── DataServices
│ └── DataService.js
├── Environments
│ └── dev.js
├── Functions
│ └── helloworld.js
├── Hooks
│ └── Cookies.js
│ └── Headers.js
│ └── Params.js
├── Responses
│ └── ok.js
│ └── critical.js
│ └── badRequest.js
├── Services
│ └── Service.js
├── Workers
│ └── DailyJob.js
│ └── NightlyJob.js
├── Policies
│ └── auth.js
│ └── paramCheck.js
├── app.js
├── node_modules
| ...
└── package.json
arupex //will be deprecated
use
arupex invoke event.json //location of event.json file
arupex server
arupex create appName
arupex create function name
arupex create policy name
arupex create service name
arupex create dataservice name
arupex create util name
arupex create hook name
arupex create worker name
arupex mock
arupex schema
Soon to be up on arupex.com
