Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ntucker/anansi
React framework for high performance SPAs
https://github.com/ntucker/anansi
babel react webframework webpack
Last synced: 7 days ago
JSON representation
React framework for high performance SPAs
- Host: GitHub
- URL: https://github.com/ntucker/anansi
- Owner: ntucker
- License: bsd-3-clause
- Created: 2017-12-15T16:12:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-17T21:09:23.000Z (6 months ago)
- Last Synced: 2024-05-18T12:01:38.294Z (6 months ago)
- Topics: babel, react, webframework, webpack
- Language: JavaScript
- Homepage:
- Size: 59.7 MB
- Stars: 39
- Watchers: 3
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# 🕷 Anansi
> Production ready, developer friendly. Opinionated yet extensible.
[Anansi](https://en.wikipedia.org/wiki/Anansi) (/əˈnɑːnsi/ ə-NAHN-see) is an Akan folktale character. He often takes the shape of a spider and is considered to be the god of all knowledge of stories. Anansi uses his knowledge to help JavaScript developers spin new web projects.
[🎮Demo](https://stackblitz.com/github/ntucker/anansi/tree/master/examples/concurrent)
## Motivation
Starting a new React project can be a lot of work. There are many tools that need to work together. The best tools available keep a tight technical focus with high levels of configurability. In practice this means it's a lot of work to get started and even more work to maintain, while keeping the tools cleanly working together.
Like Ubuntu did for Linux; Anansi focuses on bringing together many powerful tools in unison to build high performance web applications, quickly - while not losing the power and flexibility each individual tool provides.
- Start a project in a minute
- Modular and Incremental
- Modern
- Stay up with the latest best in class tooling by a simple package upgrade
- Batteries included
- DRY configurations
- Battle-tested## Installation
node.js >=12 and npm >=7 are required.
Use [nvm](https://github.com/nvm-sh/nvm) to install these if you don't already.
```bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
```Next install Anansi's CLI
```bash
npm install -g @anansi/cli
```Then generate your new project:
```bash
anansi hatch my-app-name
```This creates a `my-app-name` directory in your current directory and sets up the project there.
## Updates
Features can be incrementally adopted by running sub-generators from an existing project directory.
### E.g., Adding Testing
```shell
cd my-app-name
anansi add testing
```