DSDev Sharmainblog.devsharma.live路Nov 17, 2021 路 3 min readNest JS REST API TutorialGetting started The first things you'll need are: Node installed Your favourite Code Editor/IDE Once you have those setup, let us get started with nest. Install the nest js CLI: npm i -g @nestjs/cli Now we can use this to bootstrap our nest projec...00
DSDev Sharmainblog.devsharma.live路Nov 11, 2021 路 2 min readDeveloping with VS Code on WSL 2VS Code 馃く VS Code seems to be the 1 size fit all code editor. VS Code offers really seamless integration to develop on a remote connection such as the WSL 2 with the simple installation of an extension. Develop in WSL 2 on VS Code If you don't have ...00
DSDev Sharmainblog.devsharma.live路May 22, 2021 路 2 min readSetting up Nodejs with nvm on WSL 2Installing node.js in WSL 2 (NOTE: Although this tutorial demonstrates WSL 2/Ubuntu, this installation is primarily for Linux) In this tutorial, we will use node version manager or nvm to install and manage node versions. nvm certainly has its advant...01S
DSDev Sharmainblog.devsharma.live路May 14, 2021 路 2 min readDitching Linux for WSL 2WSL 2 == Microsoft's love for Linux Development on Linux I switched to Linux last year and shifted my development completely to the Linux ecosystem. Tried out arch, Manjaro, Pop OS!, Ubuntu, MX Linux. Development is really productive with a Linux env...03ISD
DSDev Sharmainblog.devsharma.live路May 13, 2021 路 2 min readHow to setup Tailwind CSS JIT with NextJSThe JAMStack The latest addition to the Tailwind project is the its just-in-time compiler that generates your styles on-demand as you author your templates instead of generating everything in advance at the initial build time. Here are the advantage...00