https://github.com/manojvivek/ph-instant
Code repository for the chrome extension with nodejs backend to instantly notify users on every Product Hunt post
https://github.com/manojvivek/ph-instant
chrome-extension javascript mongodb nodejs producthunt productivity
Last synced: about 1 month ago
JSON representation
Code repository for the chrome extension with nodejs backend to instantly notify users on every Product Hunt post
- Host: GitHub
- URL: https://github.com/manojvivek/ph-instant
- Owner: manojVivek
- Created: 2018-06-15T18:11:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-17T09:24:43.000Z (about 8 years ago)
- Last Synced: 2025-02-08T08:11:59.281Z (over 1 year ago)
- Topics: chrome-extension, javascript, mongodb, nodejs, producthunt, productivity
- Language: JavaScript
- Homepage: https://chrome.google.com/webstore/detail/producthunt-instant/hjaaedonkogknpppgdghjdnnjeahoghe
- Size: 231 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ph-instant
Code repository for the chrome extension with nodejs backend to instantly notify users on every Product Hunt post.
Try the production version of the extension here: https://chrome.google.com/webstore/detail/producthunt-instant/hjaaedonkogknpppgdghjdnnjeahoghe
# Development
## Server
Run the following to start the server:
```
cd server
npm install
node src/index.js #For local
#or
npm start #For production
```
## Client(Chrome extension)
Run the following to build the code:
```
cd client
npm run dev #For local development
#or
npm run build #For production release
```
This will generate the bundle and other required files in ./client/dist directory.
Load the generated chrome extension in chrome by `Kebab menu(⋮) -> More Tools -> Extensions` and then click on `LOAD UNPACKED` and select the dist folder.
Chrome extension is loaded and ready to send the ph-instant notifications.