How do most developers start a project?

Andy Fung
Sep 3, 2021

Below I will show you some standard procedures on how a developer starts a new project

  1. Create a new folder & files
  2. Change directory into the folder
mkdir "folder name"
touch "file name"
cd "folder name"

3. Clone a template or starter project

git clone "url"

4. Install all the packages & start the project

P.S. This is a node.js way to start a project

npm install
npm start

--

--

Andy Fung

Self taught grow marketer with experience in Python and Javascript