Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xdevplatform/remote-dev-jobs-streamer
Match Tweets containing remote developer jobs using Filtered Stream and Tweet Annotations
https://github.com/xdevplatform/remote-dev-jobs-streamer
annotations jobsearch nodejs twitter twitter-api
Last synced: 2 months ago
JSON representation
Match Tweets containing remote developer jobs using Filtered Stream and Tweet Annotations
- Host: GitHub
- URL: https://github.com/xdevplatform/remote-dev-jobs-streamer
- Owner: xdevplatform
- License: apache-2.0
- Created: 2020-02-06T01:02:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T07:36:44.000Z (about 2 years ago)
- Last Synced: 2024-04-22T01:00:32.251Z (9 months ago)
- Topics: annotations, jobsearch, nodejs, twitter, twitter-api
- Language: JavaScript
- Homepage:
- Size: 40.6 MB
- Stars: 37
- Watchers: 14
- Forks: 17
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Remote Developer Jobs Streaming App
Stream remote developer jobs in realtime using the Twitter API. This web app uses the [Filtered Stream endpoints](https://developer.twitter.com/en/docs/labs/filtered-stream/overview) and [Tweet Annotations](https://developer.twitter.com/en/docs/labs/overview/whats-new/annotations) in [Twitter Developer Labs](https://developer.twitter.com/en/labs) to listen for and display Tweets containing remote developer job postings.
![Screenshot](screenshot.png?raw=true=858x "Screenshot")
## Install
From the project root directory run the following
```sh
npm install
cd client/
npm install
```## Environment setup
Go into the details section of the appropriate app from your [Twiter apps dashboard](https://developer.twitter.com/en/apps) and under the "Keys and tokens" tab insert your consumer API keys below. Within your [apps dashboard](https://developer.twitter.com/en/apps), remember to select the app you have set up with Twitter Developer Labs.
```sh
export TWITTER_CONSUMER_KEY=
export TWITTER_CONSUMER_SECRET=
```## Usage
From the project root directory run the following
```sh
yarn dev
```After your app starts up, your default browser will automatically open and navigate to the rules management section of the app. Simply add the rule below to match Tweets containing remote developer job postings.
```sh
# Match Tweets containing the keywords "developer" or "engineer" and the keyword "remote", but only if they contain the context entity labels "Job search" or "Recruitment"(developer OR engineer) remote (context:66.850073441055133696 OR context:66.961961812492148736)
```## Author
👤 **Tony Vu**
* Website: https://twitter.com/tonyv00
* Twitter: [@tonyv00](https://twitter.com/tonyv00)## Support
Create a [new issue](https://github.com/twitterdev/search-tweets-python-in-r/issues) on GitHub.
## Contributing
We feel that a welcoming community is important and we ask that you follow Twitter's
[Open Source Code of Conduct](https://github.com/twitter/code-of-conduct/blob/master/code-of-conduct.md)
in all interactions with the community.## License
Copyright 2020 Twitter, Inc.
Licensed under the Apache License, Version 2.0: https://www.apache.org/licenses/LICENSE-2.0
## Production considerations
This app is for demonstration purposes only, and should not be used in production without further modifcations. Dependencies on databases, and other types of services are intentionally not within the scope of this sample app. Some considerations below:
* The application can handle light usage, but you may experience API rate limit issues under heavier load. Consider storing data locally in a secure database, or caching requests.
* To support multiple users (admins, team members, customers, etc), consider implementing a form of Access Control List for better security.