Skip to content

A simple Express server that converts a BearBlog feed into a JSON object and serves it over HTTP.

License

Notifications You must be signed in to change notification settings

jstilwell/bear-feeder

Repository files navigation

Bear Feeder

A simple Express server that converts a BearBlog feed into a JSON object and serves it over HTTP.

Getting Started

  1. Clone the repository
git clone https://github.com/stilwell/bear-feeder.git
  1. Install dependencies
npm install
  1. Set the FEED_URL environment variable.
vim .env
  1. Run the server in development mode
npm run dev
  1. Access the feed at http://localhost:3000/feed.

Building and Running with Docker

  1. Build the Docker image
docker build -t bear-feeder:latest .
  1. Run the Docker container.

Either as a daemon...

docker run -d -p 3000:3000 bear-feeder:latest

Or interactively...

docker run --rm -it -p 3000:3000 bear-feeder:latest
  1. Access the feed at http://localhost:3000/feed.

About

A simple Express server that converts a BearBlog feed into a JSON object and serves it over HTTP.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published