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
- Host: GitHub
- URL: https://github.com/redis-developer/redis-starter-nodejs
- Owner: redis-developer
- Created: 2024-05-08T17:51:57.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-30T14:39:53.000Z (over 1 year ago)
- Last Synced: 2025-01-25T09:27:35.515Z (about 1 year ago)
- Topics: javascript, js, node, node-redis, nodejs, redis
- Language: TypeScript
- Homepage:
- Size: 1.57 MB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](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.