Skip to content

Installation

Ulugbek Nuriddinov edited this page Dec 10, 2021 · 9 revisions

Requirements

First, let’s make sure that your development environment is ready.

  • If you don’t have Node.js installed, install it from here. You’ll need Node.js version 10.13 or later.
  • You’ll be using your own text editor and terminal app for this tutorial.

If you are on Windows, we recommend downloading Git for Windows and use Git Bash that comes with it, which supports the UNIX-specific commands in this tutorial.

Installation

To get Fkit app, open your terminal and run the following command:

git clone https://github.com/ucoline/fkit.git

You now have a new directory called fkit. Let’s cd into it:

cd fkit

Then, run the following command to install npm modules:

npm install

Start the local development server:

npm run start

This starts your development environment accessible by default at http://localhost:8080/

Congratulations 🎉🎉🎉

Now you’re ready to make changes to your pages!

Try editing the home page in src/pages/index.html. Saved changes will live reload in the browser.

Clone this wiki locally