artydev / exalt

A JavaScript framework for building universal apps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Exalt

A JavaScript framework for building universal apps.

Build responsive web apps for desktop and mobile platforms.

Current build status of Exalt Exalt is released under the MIT license Donate on Patreon Follow us on Twitter

Installation

To get started building applications in Exalt, the first step is to install the Exalt CLI. The CLI is used to create projects and handle ongoing tasks such as building for production and running a development server.

To install the Exalt CLI, run the following command:

npm install -g @exalt/cli

You can read more on the Exalt CLI's README.


Getting Started

Create a new Project

You can create a new project by running the create command and supplying the project name. If you want to create a component library, just pass the --library flag to the command.

exalt create <app-name>

The CLI will create a new project with the supplied name, install all the required dependencies, initialize a git repository, and configure the project.

Run The Application

The Exalt CLI comes with a built in development server. Running the serve command will launch a web server, watch your files, and build the app as you make changes.

# Navigate to the project folder
cd <app-name>

# Launch the development server
exalt serve

Ecosystem

Project Description
@exalt/core Core Framework
@exalt/cli Framework CLI
@exalt/toolchain Toolchain for JavaScript and TypeScript development

Resources

Get Started Learning @exalt/core - Learn the features provided by the core package.
Get Started Learning @exalt/cli - Learn the features provided by the cli package.
Get Started Learning @exalt/toolchain - Learn the features provided by the toolchain package.


Reporting Issues

If you are having trouble getting something to work with exalt or run into any problems, you can create a new issue.

If this framework does not fit your needs or is missing a feature you would like to see, let us know! We would greatly appreciate your feedback on it.


License

Exalt is licensed under the terms of the MIT license.

About

A JavaScript framework for building universal apps.

License:MIT License


Languages

Language:JavaScript 100.0%