https://github.com/deckchairlabs/superfly
https://github.com/deckchairlabs/superfly
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/deckchairlabs/superfly
- Owner: deckchairlabs
- Created: 2021-06-11T04:40:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-21T16:26:18.000Z (almost 4 years ago)
- Last Synced: 2025-03-31T04:31:42.215Z (about 2 months ago)
- Language: TypeScript
- Size: 2.21 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🕺 Superfly (experimental)
**DO NOT USE THIS IN PRODUCTION, MILEAGE WILL VARY AND THERE WILL BE BUGS**
_Inspired by [Remix](https://remix.run/) and the wonderful plugin [vite-plugin-ssr](https://github.com/brillout/vite-plugin-ssr)_
Superfly is an opinionated React framework similar to Next.js, which uses modern frameworks, practices and tooling!
## Getting Started
```sh
npm install @deckchairlabs/superfly@experimental# or
yarn add @deckchairlabs/superfly@experimental
```Add the following to your projects `package.json`
```json
{
"scripts": {
"dev": "superfly dev",
"build": "superfly build",
"start": "superfly start"
}
}
```### Configuration
TODO
```js
module.exports = {}
```### Plugin API
TODO
Borrow from vite/fastify, or just expose their plugin APIs.### Meta tags
TODO
### Link tags
TODO
### Server side data fetching
TODO