Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hugodf/express-redis-docker

A Node/Express app with Redis through Docker Compose
https://github.com/hugodf/express-redis-docker

docker docker-compose docker-redis express express-redis-docker javascript node redis

Last synced: 3 months ago
JSON representation

A Node/Express app with Redis through Docker Compose

Awesome Lists containing this project

README

        

# Express Redis Docker app

Requirements: [Docker Community Edition](https://www.docker.com/community-edition)

To start the app run: `docker-compose up`.

It will then be started on port 3000.

# Endpoints

## Hello World

```sh
curl http://localhost:3000
```

## Storing Data
```sh
curl http://localhost:3000/store/my-key\?some\=value\&some-other\=other-value
```

## Fetching Data

```sh
curl http://localhost:3000/my-key
```