https://github.com/sakalx/study-space.udacity
React nanodegree program
https://github.com/sakalx/study-space.udacity
contacts myreads readable udacity-react-nanodegree
Last synced: 2 months ago
JSON representation
React nanodegree program
- Host: GitHub
- URL: https://github.com/sakalx/study-space.udacity
- Owner: sakalx
- Created: 2017-10-09T23:05:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-30T03:59:50.000Z (over 7 years ago)
- Last Synced: 2025-01-28T14:23:29.245Z (4 months ago)
- Topics: contacts, myreads, readable, udacity-react-nanodegree
- Language: JavaScript
- Homepage:
- Size: 462 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
________________________________________________________
________________________________________________________
>**npm install** - installing environment
>
>**npm start** - launch project
>
>**npm run build** - build production version
________________________________________________________
________________________________________________________
# List of Projects
| folder | app |
| ------ | ------ |
| my-reads.app/ | **[MyReads.app](https://myreads.000webhostapp.com/)** |
| contacts.app/ | **[MyContacts.app](https://my-contacts-000.000webhostapp.com/)** |
| readable.app/ | **[Readable.app](https://readably.000webhostapp.com/)** |## Switch between projects:
```js
//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)_
________________________________________________________
________________________________________________________