https://github.com/nzambello/pushbullet-sms-client
An Electron/React-based Pushbullet client for SMS
https://github.com/nzambello/pushbullet-sms-client
electron pushbullet react sms
Last synced: 30 days ago
JSON representation
An Electron/React-based Pushbullet client for SMS
- Host: GitHub
- URL: https://github.com/nzambello/pushbullet-sms-client
- Owner: nzambello
- License: mit
- Created: 2018-06-10T14:18:59.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-02T14:57:45.000Z (almost 8 years ago)
- Last Synced: 2025-01-09T10:49:36.243Z (over 1 year ago)
- Topics: electron, pushbullet, react, sms
- Language: JavaScript
- Homepage:
- Size: 845 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pushbullet SMS Client
This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
You can find the most recent version of its documentation [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md).
## Introduction
This is an Electron-based client for [Pushbullet](https://pushbullet.com/).
App frontend is made with React.
## Development
We prefer using `yarn`, so the lock file submitted is its one.
### React app
To start the React app, do:
```bash
yarn start
```
We are currently using `create-react-app`, so it starts the app using default configurations of that.
### Electron app
With the react app running, to start electron:
```bash
yarn electron
```
as the main file of `package.json` is electron main script.
The electron app - in development - loads data from _create-react-app_ webpack webserver running on `localhost:3000`.
## Production
[WIP]