Guide for creating a WebApp using the FTK
This is a guide how to create a WebApp using simple command line commands.
Requirements
- Admin rights on your local machine
- NPM installed
Guide
Assuming you want to name your app my-app
run:
-
Create a new
npm
projectmkdir my-app cd my-app npm init -y
-
Install the FTK boilerplate as your first dependency
npm install @daimler/ftk-boilerplate
Once the boilerplate installation is finished you will find all necessary project files in your project folder.
Now the 3rd party dependencies can be installed. -
Install 3rd party dependencies
npm install
-
Start developing
npm start
Happy coding!