Guide
Getting started.
Getting started with H4.
Before we begin.
You must have the dart SDK installed on your computer.
Installing dart
Install Dart on Linux, MacOS or Windows
Run the following command in your terminal to test that you have installed dart properly.
Set up H4.
Let's see how to set up an app, first, install the H4 CLI.
Now, let's bootstrap your first app. Run the init
command.
After answering the prompts, the directory containing your app will have a file structure like this..
index.dart
.gitignore
analysis_options.yaml
CHANGELOG.md
pubspec.lock
pubspec.yaml
README.MD
Navigate to index.dart. Some code is already there.
You're all set! Let's run our server in dev mode.
Visit - http://localhost:5174 with your browser and voila! Hello world!