Skip to content

jamischarles/ps_redux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

ps_redux

Status updates for Redux Fundamentals course https://www.pluralsight.com/courses/redux-fundamentals will be posted here

Course code examples

The code for the course can be found at https://app.pluralsight.com/library/courses/redux-fundamentals/exercise-files

Updates

No recent updates.

Questions / Comments / Concerns

If you like the course, please rate it, and consider dropping me a note in the discussion section on the course page or on twitter.

If you have problems with the code, please let me know.

Thanks for watching the course.

FAQ

Q: In the React Crash course section, where do you get the js/lib/react.min.js and js/lib/react-dom.min.js files from?
A: For all of the files in this example, I pulled the source from https://unpkg.com. It's essentially a CDN that allows you to easily load any file from any npm package. While node.js uses the commonJS format to load files / modules and webpack now supports commonJS as well, before webpack and browserify it was common to use the UMD / AMD format. In a nutshell it basically means there is a production-ready version of the library that is bundled as 1 file. You can read more on commonJS vs AMD vs UMD here. So for most npm packages that can be loaded in a browser, you can use https://unpkg.com to get a standalone file that you can manually copy in (if you aren't using webpack etc) by typically looking in the the umd or dist folder.

Examples:

https://unpkg.com/react@16.0.0/umd/react.production.min.js
https://unpkg.com/react-dom@16.0.0/umd/react-dom.production.min.js
https://unpkg.com/redux@3.7.2/dist/redux.min.js

About

Status updates for Redux Fundamentals course will be posted here in the readme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •