https://github.com/realtux/exa
exa.js is a minimal node.js backend framework that has a strong focus on simplicity, modularity, and convention over configuration.
https://github.com/realtux/exa
backend express framework nodejs sequelize web
Last synced: 12 months ago
JSON representation
exa.js is a minimal node.js backend framework that has a strong focus on simplicity, modularity, and convention over configuration.
- Host: GitHub
- URL: https://github.com/realtux/exa
- Owner: realtux
- License: mit
- Created: 2022-12-01T17:20:21.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-04T03:36:07.000Z (12 months ago)
- Last Synced: 2025-04-11T18:12:55.635Z (12 months ago)
- Topics: backend, express, framework, nodejs, sequelize, web
- Language: JavaScript
- Homepage: https://exa.js.org
- Size: 1.39 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: docs/README.md
- License: license
Awesome Lists containing this project
README
# Website
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
### Installation
```
$ yarn
```
### Local Development
```
$ yarn start
```
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
### Build
```
$ yarn build
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.
### Deployment
Using SSH:
```
$ USE_SSH=true yarn deploy
```
Not using SSH:
```
$ GIT_USER= yarn deploy
```
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.