Install AdonisJS NodeJS Framework
AdonisJS is a new NodeJS framework that feels very similar to Laravel. Here's how to get started:
Install AdonisJS CLI
First, install the AdonisJS CLI globally using npm:
npm i -g @adonisjs/cli
Create New Application
Create a new AdonisJS application:
adonis new name_application
Run The Application
Navigate to project directory and start the development server:
cd name_application
adonis serve --dev
Access your application at:
http://localhost:3333
Project Structure
The folder structure is very similar to Laravel: