Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
This repository was archived by the owner on Oct 12, 2021. It is now read-only.
/WindsPublic archive

A Beautiful Open Source RSS & Podcast App Powered by Getstream.io

License

NotificationsYou must be signed in to change notification settings

GetStream/Winds

Repository files navigation

🛑Notice: This repository is no longer maintained; No further Issues or Pull Requests will be considered or approved.

Slack CommunityBuild StatuscodecovOpen SourceMaintenanceBuilt WithStackShare

Description

Winds is a beautiful open-source RSS and Podcast app created using React & Redux on the frontend and Express.js on the backend. Use the free hosted version or run it on your own server and customize it as you see fit. Contributions in form of pull requests are always appreciated. Activity Feeds & Discovery in Winds are powered byStream, the app leveragesAlgolia for search,AWS for hosting,MongoDB Atlas for a hosted database (DBaaS), andSendGrid for email. All of these services have a free tier.

Getting Started

To get started with Winds, please downloadthe latest release

Featured RSS & Podcasts

Have a popular RSS or Podcast and want to be featured? Reach out towinds@getstream.io. We reply to every message.

Features at a Glance

Winds is packed full of awesome features behind a beautiful user interface and user experience. Here's a quick look at what the project has to offer:

Beautiful UI

Winds UI

RSS & Podcast Recommendations

Winds RSS & Podcast Recommendations

Integrated Search

Winds Search

Podcast Player

Winds Podcast Player

RSS Reader

Winds RSS Reader

TOCd

Roadmap

Help us improve Winds and/or vote on theRoadmap for 2.1

  • Search detail screen
  • Playlist support (partially implemented)
  • Team support (share an activity feed with colleagues or friends to discover and collaborate)
  • Mobile application powered by React Native

Powered By

  1. Express
  2. React &Redux
  3. Algolia
  4. MongoDB Atlas
  5. SendGrid
  6. Bull
  7. Mercury
  8. Stream
  9. Sentry
  10. AWS

The full stack can be found onStackShare.io.

Stream

Stream is an API for building activity feeds. For Winds the follow suggestions and the list of articles from the feeds you follow is powered by Stream. Stream accounts are free for up to 3 million feed updates and handle personalization (machine learning) for up to 100 users.

Algolia

Algolia is used for lightning fast and relevant search. We use theirJavaScript search client to easily setup the Winds search implementation. Algolia, accounts are free up to 10k records and 100k operations.

MongoDB

MongoDB Atlas provides a Database as a Service, and serves as the backend datastore for Winds.

Tutorials & Blog Posts

The following tutorials will not only help you start contributing to Winds, but also provide inspiration for your next app.

Note: We're actively working on this portion of the README. To stay up to date with the latest information, please signup for the hosted version athttps://getstream.io/winds.

  1. Implementing search with Algolia
  2. Stream and Winds
  3. Running PM2 & Node.js in Production Environments
  4. Creating a RESTful API design with Express.js
  5. Takeaways on Building a React Based App with Electron
  6. The Winds Stack
  7. Building Touch Bar Support for macOS in Electron with React
  8. Testing Node.js in 2018
  9. Simple Steps to Optimize Your App Performance with MongoDB, Redis, and Node.js
  10. Getting Started with Winds & Open Source
  11. Deploying the Winds App to Amazon S3 and CloudFront
  12. Deploying the Winds API to AWS ECS with Docker Compose

Download

To download Winds, visithttps://getstream.io/winds/.

Contributing to Winds

TL;DR

Commands:

  • brew install redis mongodb
  • brew services start mongodb
  • brew services start redis
  • cd Winds
  • cd api && yarn
  • cd ../app && yarn

Sign up for both Stream and Algolia, and create the following.env file in theapp directory, replacing the keys where indicated:

DATABASE_URI=mongodb://localhost/WINDS_DEVCACHE_URI=redis://localhost:6379JWT_SECRET=YOUR_JWT_SECRETAPI_PORT=8080REACT_APP_API_ENDPOINT=http://localhost:8080STREAM_API_BASE_URL=https://windspersonalization.getstream.io/personalization/v1.0STREAM_APP_ID=YOUR_STREAM_APP_IDREACT_APP_STREAM_APP_ID=YOUR_STREAM_APP_IDREACT_APP_STREAM_API_KEY=YOUR_STREAM_API_KEYREACT_APP_STREAM_ANALYTICS=YOUR_STREAM_ANALYTICS_TOKENSTREAM_API_KEY=YOUR_STREAM_API_KEYSTREAM_API_SECRET=YOUR_STREAM_API_SECRETREACT_APP_ALGOLIA_APP_ID=YOUR_ALGOLIA_APP_IDREACT_APP_ALGOLIA_SEARCH_KEY=YOUR_ALGOLIA_SEARCH_ONLY_API_KEYALGOLIA_WRITE_KEY=YOUR_ALGOLIA_ADMIN_API_KEY

Note: If you are running the test suite, you will need to have a test version of the.env file inside of theapi/test directory.

Then run:

  • pm2 start process_dev.json
  • cd app && yarn start

Clone the Repo

git clone git@github.com:GetStream/Winds.git

Install dependencies

The following instructions are geared towards Mac users who can usebrew (Homebrew) to install most dependencies. Ubuntu users can useapt, and Windows users will have to install directly from the dependency's site. Non-debian-based Linux users will probably be able to figure it out on their own :)

  • cd Winds/app
  • yarn
  • cd ../api
  • yarn

Start MongoDB Locally

Winds uses MongoDB as the main datastore - it contains all users, rss feeds, podcasts, episodes, articles, and shares.

If you're on a Mac, you can install MongoDB throughHomebrew by running:

brew install mongodb

(You can also install MongoDB from theofficial MongoDB site.)

You can also run MongoDB in the background by running:

brew services start mongodb

Start Redis Locally

At Stream, we use Redis as an in-memory storage for the Winds podcast processing and RSS processing workers. It contains a list of podcasts and RSS feeds, which the workers pick up and process using thebull messaging system.

If you're on a Mac, you can install Redis throughHomebrew by running:

brew install redis

(You can also install Redis from theofficial Redis site.)

Then, start Redis by running:

redis-server

...which creates (by default) adump.rdb file in your current directory and stores a cached version of the database in that location.

You can also run Redis in the background by running:

brew services start redis

Loading Test Data

For testing purposes, you will want to use the test data locatedhere.

Usemongoimport ormongorestore to import the data. There are two username and password combinations for testing:

Username:admin@admin.com
Password:admin

Username:test@test.com
Password:test

You will need to run theFLUSHALL command in Redis to ensure that the new content is picked up.

Note: This will override any local data that you may have. Please be cautious! Also, this will not create Stream follows – please follow feeds manually to generate them.

Stream

Sign up and Create a Stream App

To contribute to Winds, sign up forStream to utilize the activity and timeline feeds.

(Reminder: Stream is free for applications with less than 3,000,000 updates per month.)

Add your Stream App ID, API Key, and API Secret to your.env

Append the Stream App ID, API Key, and API secret to your.env file:

STREAM_APP_ID=YOUR_STREAM_APP_IDSTREAM_API_KEY=YOUR_STREAM_API_KEYSTREAM_API_SECRET=YOUR_STREAM_API_SECRET

Create Your Stream Feed Groups

Once you've signed in, create "feed groups" for your Stream app.

A "feed group" defines a certain type of feed within your application. Use the "Add Feed Group" button to create the following feeds:

Feed Group NameFeed Group Type
podcastflat
rssflat
userflat
timelineflat
folderflat
user_episodeflat
user_articleflat

It's fine to enable "Realtime Notifications" for each of these feed groups, though we won't be using those yet.

Algolia

Sign up for Algolia and Create an Algolia App and Index

In addition to Stream, you also need to sign up forAlgolia, to contribute to Winds, for the search functionality.

(Algolia is free for applications with up to 10k records.)

  • Sign up for Algolia here
  • From theApplications page, click "New Application" and create a new Algolia application. (We recommend something similar tomy-winds-app)
    • (Select the datacenter that's closest to you.)
  • From the application page, select "Indices" and click "Add New Index". (We recommend something similar towinds-main-index)

Add Your Algolia Application Id, Search-Only Api Key and Admin Api Key to Your.env File

From your app, click the "API Keys" button on the left to find your app ID and API keys.

Append your Algolia application ID, search-only API Key and Admin API Key to your.env file to look like this:

REACT_APP_ALGOLIA_APP_ID=YOUR_ALGOLIA_APP_IDREACT_APP_ALGOLIA_SEARCH_KEY=YOUR_ALGOLIA_SEARCH_ONLY_API_KEYALGOLIA_WRITE_KEY=YOUR_ALGOLIA_ADMIN_API_KEY

Start Backend Services

From the root directory, run:

pm2 start process_dev.json

To see logging information for all processes, run:

pm2 logs

Start Frontend Electron / Web App Server

cd app && yarn start

Running tests

Winds API server uses:

Tests are located inapi/test folder.

File structure is intentionally mirroring files inapi/src to simplify matching tests to tested code.

To run tests:

cd api && yarn run test

To run tests with extended stack traces (useful when debugging async issues):

cd api && yarn run test_deep

Adding new tests

Add your code to a file inapi/test folder (preferably mirroring existing file fromapi/src folder).

Refer toMocha documentation for examples of using BDD-like DSL for writing tests.

Modules are mocked inapi/test-entry.js as mocks have to be installed before any modules are loaded.

Fixtures are loaded vialoadFixture function fromapi/test/fixtures folder

Various utility functions are provided inapi/test/util.js (See other tests for examples of usage).

Building a Production Version

Build a production version of Winds by running from root directory:

./api/build.sh

This creates production-ready JS files in api/dist.

To run the production JS files:

pm2 start process_prod.json

OR

Prepare the build for Docker:

cd api && cd scripts && ./make-build.sh

Build the Docker container (API & all workers):

cd ../ && docker-compose up

The commands above will prepare and start the API (and all workers). The frontend will still need to be started manually.

Debugging RSS & Podcast Issues

Unfortunately there is no unified standard for RSS.Go to theapi directory and runyarn link to make these commands available:

winds rss https://techcrunch.com/feed/

Podcasts:

winds podcast https://www.npr.org/rss/podcast.php\?id\=510289

Open Graph scraping:

winds og http://www.planetary.org/multimedia/planetary-radio/show/2018/0509-amy-mainzer-neowise.html

RSS Discovery:

winds discover mashable.com

Article parsing (w/ Mercury):

winds article https://alexiskold.net/2018/04/12/meet-12-startups-from-techstars-nyc-winter-2018-program/

Pull requests for improved RSS compatibility are much appreciated.Most of the parsing codebase is located inapi/src/parsers/.

Support

All support is handled viaGitHub Issues. If you're unfamiliar with creating an Issue on GitHub, please followthese instructions.

Maintenance and Contributions

Thank you to all of the maintainers and contributors who've helped Winds become what it is today and help it stay up and running every day. We couldn't do it without you!

Special Shoutouts To:

Primary Maintainers

Contributors

Revive RSS

RSS is an amazing open standard. It is probably the most pleasant way to stay up to date with the sites and podcasts you care about. Our reasons for contributing to Winds are explained in the blogpostWinds 2.0 It's time to Revive RSS. In this section we will list other open source and commercial projects that are having an impact on Reviving RSS:

We are hiring!

We've recently closed a$38 million Series B funding round and we keep actively growing.Our APIs are used by more than a billion end-users, and you'll have a chance to make a huge impact on the product within a team of the strongest engineers all over the world.

Check out our current openings and apply viaStream's website.


[8]ページ先頭

©2009-2025 Movatter.jp