You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+13-9
Original file line number
Diff line number
Diff line change
@@ -12,34 +12,38 @@ Plus, I made all the course slides available for download, to make it easier to
12
12
13
13
**A:** If you're new to GitHub and just want to download the complete package, hit the green button saying "Clone or download", choose the "Download ZIP" option, and you're good to go.
14
14
15
-
### Q2: I'm stuck in one of the projects. Where do I get help?
15
+
### Q2: One of the NPM packages is not working (compiling Sass, live-reload, etc). How to fix it?
16
16
17
-
**A:** Have you extensively tried fixing the problem on your own? If you failed at fixing it, please post a detailled description of the problem to the Q&A area of that video over at Udemy, along with a [codepen](https://codepen.io/pen/) containing your code. You will get help as fast as possible! Please don't send me a personal message on Udemy to fix coding problems.
17
+
Unfortunately, this is quite common. I listed some possible fixes [in this document](npm-fixes.md).
18
18
19
-
### Q3: You keep mentioning your resources page. Where can I find it?
19
+
### Q3: I'm stuck in one of the projects. Where do I get help?
20
+
21
+
**A:** Have you extensively tried fixing the problem on your own? If you failed at fixing it, please **post a detailled description of the problem to the Q&A area of that video over at Udemy**, along with a [codepen](https://codepen.io/pen/) containing your code. You will get help as fast as possible! Please don't send me a personal message or email to fix coding problems.
22
+
23
+
### Q4: You keep mentioning your resources page. Where can I find it?
20
24
21
25
**A:** It's on my website at <http://codingheroes.io/resources>. You can subscribe for updates 😉
22
26
23
-
### Q4: What VSCode theme are you using?
27
+
### Q5: What VSCode theme are you using?
24
28
25
29
**A:** I use Oceanic Next (dimmed bg) for all my coding and course production. [Here is my complete VSCode setup](vscode-setup.md).
26
30
27
-
### Q5: The videos don't load, can you fix it?
31
+
### Q6: The videos don't load, can you fix it?
28
32
29
33
**A:** Unfortunately, there is nothing I can do about it. The course is hosted on Udemy's platform, and sometimes they have small technical issues like this one. Please just come back a bit later or [contact their support team](https://support.udemy.com/hc/en-us). Also, don't forget to select the HD option in the video player.
30
34
31
-
### Q6: Are the videos downloadable as well?
35
+
### Q7: Are the videos downloadable as well?
32
36
33
37
**A:** Yes, I made all videos downloadable on the Udemy platform so you can learn even without an internet connection. To download a video, use the settings icon in the right bottom corner of the video player.
34
38
35
-
### Q7: I love your courses and want to get updates on new courses. How?
39
+
### Q8: I love your courses and want to get updates on new courses. How?
36
40
37
41
**A:** First, you can subscribe to my email list [at my website](http://codingheroes.io/newsletter). Plus, I make important announcements on twitter [@jonasschmedtman](https://twitter.com/jonasschmedtman), so you should definitely follow me there 🔥
38
42
39
-
### Q8: Can I connect with your other students in some way?
43
+
### Q9: Can I connect with your other students in some way?
40
44
41
45
**A:** Yep, I thought about this! I started quite an active Discord chatroom for you to chat with other students, help each other out or just hang out with like-minded people. You can [join using this invite](https://discord.gg/0ocsLcmnIZqxMSYD).
42
46
43
-
### Q9: How do I get my certificate of completion?
47
+
### Q10: How do I get my certificate of completion?
44
48
45
49
**A:** A certificate of completion is provided by Udemy after you complete 100% of the course. After completing the course, just click on the small trophy icon on the course overview page. If you want to change your name on the certificate, please [contact the Udemy support team](https://support.udemy.com/hc/en-us).
# Possible fixes for common problems with NPM packages
2
+
3
+
## Q1: My Sass isn't compiling at all or the `-w` flag is not working
4
+
5
+
### Solution 1
6
+
7
+
This may be because you're using a different `node-sass` version than the one I use in the videos. Please uninstall `node-sass` with:
8
+
9
+
`npm uninstall node-sass --save-dev`
10
+
11
+
Then install version `4.5.3` with;
12
+
13
+
`npm install node-sass@4.5.3 --save-dev`.
14
+
15
+
### Solution 2
16
+
17
+
This is more of a workaround if Solution 1 doesn't work. You can install a package called `nodemon` to run node.js code directly. Install it with:
18
+
19
+
`npm install nodemon --save-dev`
20
+
21
+
Then in the `package.json` file, change the `watch:css` task to:
22
+
23
+
`"watch:sass": "nodemon -e scss -x \"npm run compile:sass\""`
24
+
25
+
### Solution 3
26
+
27
+
If you're using VSCode, the defualt autosave setting is that it saves your file each time you stroke a key. This made me run into some errors in the videos. The fix is to change the autosave setting to `onFocusChange`. You can do so by copying the following instruction to the settings (panel on the right side):
28
+
29
+
`"files.autoSave": "onFocusChange"`
30
+
31
+
## Q2: Autoprefixer isn't working on Windows
32
+
33
+
On Windows you will have to escape the `"` in the autoprefixer task, just like this:
If your NPM packages don't work at all, please make sure you have at least node `v6.x.x` installed on your computer. You can check your verison with `node -v`.
40
+
41
+
You can also try setting all your NPM packages to the same versions used in the videos. I works like described in **Q1** of this document (`node-sass` example). These are the versions I used in the videos:
42
+
43
+
```
44
+
"autoprefixer": "^7.1.4",
45
+
"concat": "^1.0.3",
46
+
"node-sass": "^4.5.3",
47
+
"npm-run-all": "^4.1.1",
48
+
"postcss-cli": "^4.1.1"
49
+
```
50
+
51
+
I will keep this document updated if more issues arise.
0 commit comments