Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 81169c9

Browse files
committed
new readme version
1 parent 2eaa793 commit 81169c9

File tree

2 files changed

+97
-22
lines changed

2 files changed

+97
-22
lines changed

README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# AdonisJS Framework
2+
3+
[![Gitter](https://img.shields.io/badge/+%20GITTER-JOIN%20CHAT%20%E2%86%92-1DCE73.svg?style=flat-square)](https://gitter.im/adonisjs/adonis-framework)
4+
[![Version](https://img.shields.io/npm/v/adonis-framework.svg?style=flat-square)](https://www.npmjs.com/package/adonis-framework)
5+
[![Build Status](https://img.shields.io/travis/adonisjs/adonis-framework.svg?style=flat-square)](https://travis-ci.org/adonisjs/adonis-framework)
6+
[![Coverage Status](https://img.shields.io/coveralls/adonisjs/adonis-framework/master.svg?style=flat-square)](https://coveralls.io/github/adonisjs/adonis-framework?branch=master)
7+
[![Downloads](https://img.shields.io/npm/dt/adonis-framework.svg?style=flat-square)](https://www.npmjs.com/package/adonis-framework)
8+
[![License](https://img.shields.io/npm/l/adonis-framework.svg?style=flat-square)](https://opensource.org/licenses/MIT)
9+
10+
> :pray: This repository contains the core of the AdonisJS framework.
11+
12+
Adonis is a MVC framework for NodeJS built on solid foundations.
13+
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.
15+
16+
You can learn more about AdonisJS and all of its awesomeness on http://adonisjs.com :evergreen_tree:
17+
18+
## Table of Contents
19+
20+
* [Team Members](#team-members)
21+
* [Requirements](#requirements)
22+
* [Getting Started](#getting-started)
23+
* [Contribution Guidelines](#contribution-guidelines)
24+
25+
## <a name="team-members"></a>Team Members
26+
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).

readme.md

Lines changed: 42 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,55 @@
1-
# Adonis Framework
1+
# AdonisJS Framework
22

3+
[![Gitter](https://img.shields.io/badge/+%20GITTER-JOIN%20CHAT%20%E2%86%92-1DCE73.svg?style=flat-square)](https://gitter.im/adonisjs/adonis-framework)
4+
[![Version](https://img.shields.io/npm/v/adonis-framework.svg?style=flat-square)](https://www.npmjs.com/package/adonis-framework)
35
[![Build Status](https://img.shields.io/travis/adonisjs/adonis-framework.svg?style=flat-square)](https://travis-ci.org/adonisjs/adonis-framework)
46
[![Coverage Status](https://img.shields.io/coveralls/adonisjs/adonis-framework/master.svg?style=flat-square)](https://coveralls.io/github/adonisjs/adonis-framework?branch=master)
57
[![Downloads](https://img.shields.io/npm/dt/adonis-framework.svg?style=flat-square)](https://www.npmjs.com/package/adonis-framework)
68
[![License](https://img.shields.io/npm/l/adonis-framework.svg?style=flat-square)](https://opensource.org/licenses/MIT)
79

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.
911
10-
You can learn more about adonis on http://adonisjs.com
12+
Adonis is a MVC framework for NodeJS built on solid foundations.
1113

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.
1315

14-
COPYRIGHT (c) 2016 Harminder Virk
16+
You can learn more about AdonisJS and all of its awesomeness on http://adonisjs.com :evergreen_tree:
1517

16-
MIT License
18+
## Table of Contents
1719

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)
2524

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
2826

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

Comments
 (0)