I moved this tool to this WebSite https://www.atomicg.dev/ Enjoy ;)
This npm generate a CRUD for Angular 2 using a data model definition and best practices
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' repositoryTo run your new project you need install the next packages:
npm install --global typescript
npm install --global webpack
npm install --global webpack-dev-server1 - 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!
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
Then generate your new project into your project folder with the dataModel.json defined:
yo angular-2-crudNow you can run your new CRUD
npm starthttp://127.0.0.1:3000 or http://0.0.0.0:3000
Instance we can generate a server mock in NodeJs/ExpressJs
yo angular-2-crud:serverNow you can run your server NodeJs mock and test your Angular 2 CRUD with fake data.
cd server
npm startMIT © gorums