An open API service indexing awesome lists of open source software.

https://github.com/redis-developer/redis-starter-nodejs

A starter project for working with Redis and Node
https://github.com/redis-developer/redis-starter-nodejs

javascript js node node-redis nodejs redis

Last synced: about 1 month ago
JSON representation

A starter project for working with Redis and Node

Awesome Lists containing this project

README

          

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/redis-developer/redis-nodejs-starter)

This is a [Redis](https://redis.io/) starter app for [Node](https://nodejs.org/) using:

- [Redis Cloud](https://redis.io/try-free/)
- [Next.js](https://nextjs.org)
- [Tailwind CSS](https://tailwindcss.com/)

## Getting started

Copy and edit the `.env` file:

```bash
cp .env.example .env.local
```

Your `.env.local` file should contain the connection string you copied from Redis Cloud.

Next, run the development server:

```bash
npm install
# then
npm run dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

## Learn more

To learn more about Redis, take a look at the following resources:

- [Redis Documentation](https://redis.io/docs/latest/) - learn about Redis products, features, and commands.
- [Learn Redis](https://redis.io/learn/) - read tutorials, quick starts, and how-to guides for Redis.
- [Redis Demo Center](https://redis.io/demo-center/) - watch short, technical videos about Redis products and features.