Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alperg/aspnet-scaffolder
Lightweight ASP.NET Model & View & Controller scaffolding tool
https://github.com/alperg/aspnet-scaffolder
asp-net asp-net-mvc aspnet-scaffolder cli-tool controller controller-scaffolding model scaffolding view
Last synced: 25 days ago
JSON representation
Lightweight ASP.NET Model & View & Controller scaffolding tool
- Host: GitHub
- URL: https://github.com/alperg/aspnet-scaffolder
- Owner: alperg
- License: mit
- Created: 2017-10-13T19:54:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-19T14:12:45.000Z (over 7 years ago)
- Last Synced: 2024-12-23T10:05:42.477Z (about 1 month ago)
- Topics: asp-net, asp-net-mvc, aspnet-scaffolder, cli-tool, controller, controller-scaffolding, model, scaffolding, view
- Language: JavaScript
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aspnet-scaffolder
### Lightweight ASP.NET Model & View & Controller scaffolding toolNPM link: https://www.npmjs.com/package/aspnet-scaffolder
## Installation:
Install the package globally:
`npm install aspnet-scaffolder -g`
## Usage:
Call the script with the name of your model:
`aspnet-scaffolder Person`
This tool doesn't verify that your model exists before creating it, so don't overwrite accidentally!
The output will be:
```
-Models
----Person.cs
-Views
----Person
--------Create.cshtml
--------Delete.cshtml
--------Details.cshtml
--------Edit.cshtml
--------Index.cshtml
-Controllers
----PersonController.cs
```