I would like to contribute with this project
Hi @jmcdo29 it's a great idea, I started my own but I complicated myself I think if you provide a list of the project ideas I can help with some of them.
Awesome! To generate a new Nest application with nx you can do either of the following
- if
nxis installed runnx g @nrwl/nest:application <sample-name> - if
nxis not installedpnpm nx g @nrwl/nest:application <sample-name>
The difference to recognize is with the second command to pass other arguments (defined here) you will need a -- between the command and the extra arguments.
As for what kind of samples I plan to have here, I don't really know yet. Someone has asked for a socket.io sample with proper types for the socket.io library and the gateway, you can pretty much clone the websockets sample for that and swap out types. I think a good auth example without passport would be good to show, possibly an OAuth sample. I've got some repos around that could probably be merged into this as well like my content-negotiation sample.
Anything you really think would be a good sample and enrich the community is welcome.
Ok. all sounds really good, I will work on that this weekend.