Purpose Command To create new Nest Project nest new project-name To create a new TypeScript project with stricter feature set nest new –strict project-name For quickly creating a CRUD controller nest g resource [name] To create a controller nest g controller [name] To create a service nest g service [name] To create a module nest […]
Blogs
AWS: Simple Email Service (Sample Java Example)
AWS SES, a cloud-based email service provider that allows you to send and receive email using your own email addresses and domains. AWS SES is a cost-effective, flexible, and scalable solution for various email use cases, such as marketing, transactional, notification, and bulk emails. AWS SES also integrates seamlessly with other AWS products and services, […]
Faker.js : A developer’s time saving library
Faker.js is a JavaScript library that allows you to generate fake data for various purposes, such as testing, development, or demonstration. Faker.js can create realistic and diverse data for different domains, such as address, commerce, company, date, finance, image, random, or name. You can use Faker.js in both browser and Node.js environments, and it supports […]
How to use FreeMarker
FreeMarker is a template engine. It is an open source Java library, provided by Apache. Using FreeMarker developer can generate sample text like html, product description, email etc. All you need to add some variables where dynamic value will be assigned. I will explain how to use FreeMarker in Spring boot framework. I will create […]