npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

generator-gmdotnetrest

v1.1.0

Published

My personal Yeoman generator for dotnet rest webapi projects

Downloads

6

Readme

generator-gmdotnetrest

npm version

My personal Yeoman generator for .Net Core REST WebApi projects.

This generator is used to create a basic REST api project, and add new domain entities to the project from a Json file. When new domain entity is added, the generator create all the necerary classes to manage and validate requests for /api/entity-name (GET, POST, PUT and DELETE).

The basic project generated uses:

MongoDB C# Driver - For MongoDB database.

Fluent Validation - For entities validation rules.

System.IdentityModel.Tokens.Jwt - For JWT Bearer authentication.

Create new project

Install Yeoman.

  • npm install yo -g

Install generator.

  • npm install generator-gmdotnetrest -g

Create new project.

  • mkdir GeneratorTest
  • cd GeneratorTest
  • yo gmdotnetrest

Restore packages.

  • dotnet restore

Start MongoDB Server.

Start project.

  • dotnet run
  • GET for "api/users" and receive 401 Unauthorized

Create new User.

  • POST for "api/users Body = { "Name": "User", "Email": "[email protected]", "Password":"12345" }"

Do login.

  • POST for "api/token Body = { "Email": "[email protected]", "Password":"12345" }" and receive a Token

Do a request with authorization header.

  • GET for "api/users Header = { "Authorization": "Bearer 'Token Received' }" and receive 200

Have fun :)

Add new domain entity

Create a Json file like this: [ { "Name": "School", "Properties": [ { "Name": "Name", "Type": "string", "Required": [ true, "The name is required" ], "Length": [ 0, 10, "Name must be 10 characters or less" ] }, { "Name": "Email", "Type": "string", "Required": [ true, "The email is required" ], "IsEmail": [ true, "Invalid Email" ] } ], "Unique": [ [ "Email", "Name" ],"The email and name must be unique" ] }, { "Name": "Car", "Properties": [ { "Name": "Name", "Type": "string", "Required": [ true, "The name is required" ] }, { "Name": "Register", "Type": "int", "Required": [ true, "The register is required, do you understand ?" ] }, ], "Unique": [ [ "Register" ],"The Register must be unique" ] } ]

In the root of your project.

  • yo gmdotnetrest:model "path of your JsonFile"

Now your new entities can be managed by

  • api/Schools (GET, POST, PUT, DELETE)
  • api/Cars (GET, POST, PUT, DELETE)

Future improvements

  • Refactor code.
  • Add option to create new domain entity without Controller and Validation classes.
  • Support FK validation rules for entities.
  • Support SQL databases.