|
1 | | -# Adonis Framework |
| 1 | +# AdonisJS Framework |
2 | 2 |
|
| 3 | +[](https://gitter.im/adonisjs/adonis-framework) |
| 4 | +[](https://www.npmjs.com/package/adonis-framework) |
3 | 5 | [](https://travis-ci.org/adonisjs/adonis-framework) |
4 | 6 | [](https://coveralls.io/github/adonisjs/adonis-framework?branch=master) |
5 | 7 | [](https://www.npmjs.com/package/adonis-framework) |
6 | 8 | [](https://opensource.org/licenses/MIT) |
7 | 9 |
|
8 | | -Adonis Framework is a MVC framework for NodeJs, built on solid foundations. Adonis is the first Nodejs framework with support for solid dependency injection and has a lean IOC container to resolve and mock dependencies. |
| 10 | +> :pray: This repository contains the core of the AdonisJS framework. |
9 | 11 |
|
10 | | -You can learn more about adonis on http://adonisjs.com |
| 12 | +Adonis is a MVC framework for NodeJS built on solid foundations. |
11 | 13 |
|
12 | | -## The MIT License |
| 14 | +It is the first NodeJS framework with support for [Dependency Injection](http://adonisjs.com/docs/2.0/dependency-injection) and has a lean [IoC Container](http://adonisjs.com/docs/2.0/ioc-container) to resolve and mock dependencies. It borrows the concept of [Service Providers](http://adonisjs.com/docs/2.0/service-providers) from the popular [PHP framework Laravel](https://laravel.com) to write scalable applications. |
13 | 15 |
|
14 | | -COPYRIGHT (c) 2016 Harminder Virk |
| 16 | +You can learn more about AdonisJS and all of its awesomeness on http://adonisjs.com :evergreen_tree: |
15 | 17 |
|
16 | | -MIT License |
| 18 | +## Table of Contents |
17 | 19 |
|
18 | | -Permission is hereby granted, free of charge, to any person obtaining |
19 | | -a copy of this software and associated documentation files (the |
20 | | -"Software"), to deal in the Software without restriction, including |
21 | | -without limitation the rights to use, copy, modify, merge, publish, |
22 | | -distribute, sublicense, and/or sell copies of the Software, and to |
23 | | -permit persons to whom the Software is furnished to do so, subject to |
24 | | -the following conditions: |
| 20 | +* [Team Members](#team-members) |
| 21 | +* [Requirements](#requirements) |
| 22 | +* [Getting Started](#getting-started) |
| 23 | +* [Contribution Guidelines](#contribution-guidelines) |
25 | 24 |
|
26 | | -The above copyright notice and this permission notice shall be |
27 | | -included in all copies or substantial portions of the Software. |
| 25 | +## <a name="team-members"></a>Team Members |
28 | 26 |
|
29 | | -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
30 | | -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
31 | | -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
32 | | -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
33 | | -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
34 | | -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
35 | | -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 27 | +* Harminder Virk ([Caffiene Blogging](http://amanvirk.me/)) <virk.officials@gmail.com> |
| 28 | + |
| 29 | +## <a name="requirements"></a>Requirements |
| 30 | + |
| 31 | +AdonisJS is build on the top of ES2015, which makes the code more enjoyable and cleaner to read. It doesn't make use of any transpiler and depends upon Core V8 implemented features. |
| 32 | + |
| 33 | +For these reasons, AdonisJS require you to use `node >= 4.0` and `npm >= 3.0`. |
| 34 | + |
| 35 | +## <a name="getting-started"></a>Getting Started |
| 36 | + |
| 37 | +AdonisJS provide a [CLI tool](https://github.com/AdonisJs/adonis-cli) to scaffold and generate a project with all required dependencies. |
| 38 | + |
| 39 | +```bash |
| 40 | +$ npm install -g adonis-cli |
| 41 | +``` |
| 42 | + |
| 43 | +```bash |
| 44 | +$ adonis new awesome-project |
| 45 | +$ cd awesome-project |
| 46 | +$ npm run start |
| 47 | +``` |
| 48 | + |
| 49 | +[Official Documentation](http://adonisjs.com/docs/2.0/installation) |
| 50 | + |
| 51 | +## <a name="contribution-guidelines"></a>Contribution Guidelines |
| 52 | + |
| 53 | +In favor of active development we accept contributions for everyone. You can contribute by submitting a bug, creating pull requests or even improving documentation. |
| 54 | + |
| 55 | +You can find a complete guide to be followed strictly before submitting your pull requests in the [Official Documentation](http://adonisjs.com/docs/2.0/contributing). |
0 commit comments