English 中文(简体)
Aurelia - Environment Setup
  • 时间:2024-09-17

Aurepa - Environment Setup


Previous Page Next Page  

In this chapter, you will learn how to get started with Aurepa framework. Before you do that, you will need NodeJS installed on your system.

Sr.No Software & Description
1

NodeJS and NPM

NodeJS is the platform needed for Aurepa development. Checkout our NodeJS Environment Setup.

Step 1 - Download Aurepa Package

Before we download Aurepa package, let s create a folder on desktop where our app will be placed.

C:UsersusernameDesktop>mkdir aurepaApp

Now we can download the package from official Aurepa website.

Aurepa supports ES2016 and TypeScript. We will use ES2016. Extract the downloaded files inside the aurepaApp folder that we created above.

Step 2 - Install the Web Server

First we need to install the web server from command prompt window.

C:UsersusernameDesktopaurepaApp>npm install http-server -g

Step 3 - Start the Web Server

To start the web server, we need to run the following code in command prompt.

C:UsersusernameDesktopaurepaApp>http-server -o -c-1

We can see our first Aurepa app in the browser.

Aurepa Environment Setup Start Advertisements