'use strict'
const Lucid = use('Lucid')
class User extends Lucid {
}
const User = use('App/Model/User')
// All Users
const users = yield User.all()
// Using where clause
const activeUsers = yield User.query()
.where('status', 'active').fetch()
const User = use('App/Model/User')
class UsersController {
* index (request, response) {
const users = yield User.all()
yield response.sendView('users.list', {
users: users.toJSON()
})
}
}
{% for user in users %}
- {{ user.username }}
{% endfor %}
├── app
│ ├── Commands
│ ├── Http
│ ├── Listeners
│ ├── Model
├── bootstrap
├── config
├── database
│ ├── migrations
│ └── seeds
├── providers
├── public
├── resources
│ └── views
├── storage
const Route = use('Route')
Route.get('/', function * (request, response) {
response.send('This is the home page')
})
const Route = use('Route')
Route
.get('/profile', 'UserController.profile')
.middleware('auth')
yield User.all()
yield User.query().where('status', 'active').fetch()
class User extends Lucid {
profile () {
return this.hasOne('App/Model/Profile')
}
posts () {
return this.hasMany('App/Model/Post')
}
}
./ace make:model User
# or with migration
./ace make:model User --migration
'use strict'
const Lucid = use('Lucid')
class User extends Lucid {
}
query(), fetch(), first(), findBy(key, value), find(value), all(), ids(), pair(lhs, rhs), paginate(page, [perPage=20]), pick([limit=1]), pickInverse([limit=1]), create(values), save(), createMany(), findOrFail(value), findByOrFail(key, value), findOrCreate (whereAttributes, values), withTrashed()
etc...
./ace make:migration users --create=users
// Output
create: database/migrations/1464437815620_users.js
'use strict'
const Schema = use('Schema')
class UsersSchema extends Schema {
up () {
this.create('users', (table) => {
table.increments()
table.timestamps()
})
}
down () {
this.drop('users')
}
}
module.exports = UsersSchema
// database/factory.js
const Factory = use('Factory')
Factory.blueprint('App/Model/User', (fake) => {
return {
username: fake.username(),
email: fake.email(),
password: fake.password(),
firstName: fake.first(),
lastName: fake.last()
}
})
// database/seeds/Database.js
'use strict'
const Factory = use('Factory')
class DatabaseSeeder {
* run () {
yield Factory.model('App/Model/User').create(5)
}
}
module.exports = DatabaseSeeder
./ace db:seed
"Secret to productivity is not finding more time to do more stuff, but finding the strength to do less of the stuff that doesn’t need doing." – David Heinemeier Hansson
https://scotch.io/tutorials/meet-adonisjs-a-laravel-style-mvc-framework-for-node-js
https://medium.com/@Charles6Andy/node-js-broken-ecosystem-and-rise-of-adonisjs-46e3d63e5fcc
https://medium.com/ph-devconnect/adonisjs-framework-concept-and-features-529734d07606
http://techinpink.com/2017/02/27/getting-started-with-adonisjs%E2%80%8A-%E2%80%8Aa-javascript-framework-for-node-js-2/
https://auth0.com/blog/creating-your-first-app-with-adonisj-and-adding-authentication/
https://raygun.com/blog/node-js-performance-2017/
https://github.com/adonisjs/projects