Skip to content

shukladitya/moqued-backend

Repository files navigation

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.

NPM Version Package License NPM Downloads CircleCI Coverage Discord Backers on Open Collective Sponsors on Open Collective Support us

Description

Nest framework TypeScript starter repository.

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

Support

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.

Stay in touch

License

Nest is MIT licensed.

Starting Redis as a Background Service

To start Redis as a background service using Homebrew, follow these steps:

  1. Install Redis:

    brew install redis
  2. Start Redis as a background service:

    brew services start redis

Starting Redis in the Foreground (Development/Testing)

If you prefer to run Redis in the foreground for development or testing, you can follow these steps:

  1. Start the Redis server in a terminal:

    redis-server
  2. Open a new terminal window and connect to Redis using the CLI:

    redis-cli

    Now, you can enter Redis commands in the Redis CLI.

Note: Running Redis in the foreground is suitable for development or testing purposes. In production, it's recommended to set up Redis as a background service using a process manager.

Build and Run the extension in VSCode

Step 1: Run Webpack in Watch Mode

Ensure that you have Webpack installed globally. If not, you can install it by running:

npm install -g webpack

Now, run Webpack in watch mode to build the extension:

webpack --watch

This command will monitor your source code for changes and automatically rebuild the extension.

Step 2: Run the Project

1.Open Visual Studio Code. 2.Press F5 or click on the "Run Extension" play button in the Run and Debug sidebar.

This will launch a new instance of VS Code with your extension installed. Test your extension in the newly opened VS Code instance.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages