generator-angular-2-crud
v0.6.0
Published
This app generate a CRUD for Angular2
Downloads
4
Readme
generator-angular-2-crud
This npm generate a CRUD for Angular 2 using a data model definition and best practices
Installation
First, install Yeoman and generator-angular-2-crud using npm (we assume you have pre-installed node.js). Ensure you're running the latest versions Node v4.x.x+ (or v5.x.x) and NPM 3.x.x+
npm install -g yo
npm install -g generator-angular-2-crud <------ is not WORKING, we have an open issues on 'yo' repository
To run your new project you need install the next packages:
npm install --global typescript
npm install --global webpack
npm install --global webpack-dev-server
Installing generator-angular-2-crud from scratch
1 - npm install -g yo
2 - Delete the globally installed generator (if was installed by mistake): npm uninstall -g generator-angular-2-crud
3 - go into your npm root repo cd `npm -g root`
4- Clone generator-angular-2-crud repo git clone https://github.com/gorums/generator-angular-2-crud.git
5- cd generator-angular-2-crud
6- npm install
7- return to your directory where you have defined the dataModel.json file and generate the crud : yo angular-2-crud
6- Enjoy!
DataModel
Access to the project folder and create a file named dataModel.json
mkdir my_new_crud && cd my_new_crud
touch dataModel.json
- Example of dataModel.json
{
"Doctors": {
"Id": { "key": "true" },
"Name": { "type": "string", "require": "true" },
"Address": "string",
"Available": "boolean"
},
"Patients": {
"Id": { "key": "true" },
"Name": { "type": "string", "require": "true" },
"Address": "string",
"Age": "number",
"History": {"type": "string", "textArea": "true" },
"DoctorId": { "referent": "Doctors", "render": "Name" }
},
"relativeURI": "/api"
}
key: Define a field as key
type: Allow string, boolean and number
require: Define a field as require for validation
referent: Define the relation
render: Define what field show in the relation, in the example above it is going to render Doctor.Name instance of DoctorId
relativeURI: Define the relative URI. An example using /api http://127.0.0.1:3000/api/myentity
without relativeURI the URL is going to be http://127.0.0.1:3000/myentity
- textArea: Render the field as textarea
Generation
Then generate your new project into your project folder with the dataModel.json defined:
yo angular-2-crud
Run
Now you can run your new CRUD
npm start
http://127.0.0.1:3000 or http://0.0.0.0:3000
Server Mock Generator
Instance we can generate a server mock in NodeJs/ExpressJs
yo angular-2-crud:server
Run Server Mock
Now you can run your server NodeJs mock and test your Angular 2 CRUD with fake data.
cd server
npm start
Thanks for help
License
MIT © gorums