Skip to content

sakalx/study-space.udacity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



npm install - installing environment

npm start - launch project

npm run build - build production version



List of Projects

folder app
my-reads.app/ MyReads.app
contacts.app/ MyContacts.app
readable.app/ Readable.app

Switch between projects:

//webpack.config.js
const
    develop = '*.app' //name project-folder
    production = 'dist'; // name production folder


Each Project have:

  • api/ or local-storage/ - Calls to a backend API

  • components/ - Presentational (aka Dumb) components go here

  • scenes/ - These are the stateful ones, and the ones that make the API calls

  • theme.js - Project theme

  • helpers.js - Helper Functions and Constants if needed

  • favicon/ - Favicon (Logo)