Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drakkein/cyclehn
Hacker News PWA written in Cycle.js
https://github.com/drakkein/cyclehn
cyclejs hackernews-clone pwa
Last synced: 3 months ago
JSON representation
Hacker News PWA written in Cycle.js
- Host: GitHub
- URL: https://github.com/drakkein/cyclehn
- Owner: drakkein
- Created: 2017-09-18T12:23:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-23T18:21:29.000Z (about 2 years ago)
- Last Synced: 2024-10-30T21:21:20.988Z (3 months ago)
- Topics: cyclejs, hackernews-clone, pwa
- Language: TypeScript
- Homepage:
- Size: 657 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Your amazing project
Thanks for using the `one-fits-all` flavor.
### Using your app
Run in development mode: `npm start`
Build a production build: `npm run build`
Run the unit tests: `npm test`### Extending the configuration
If you want to add custom config to babel or webpack, you can now do it! Just add a `.babelrc` or `webpack.config.js` respectively to your app root directory. The `webpack.config.js` just has to export a partial webpack config. It will be merged with the default config.
Example: Adding the progress bar plugin:
```javascript
// /path/to/your/app/webpack.config.js
const ProgressBarPlugin = require('progress-bar-webpack-plugin');module.exports = {
plugin: [
new ProgressBarPlugin()
]
}
```