Skip to content

Commit 336c0fd

Browse files
committedNov 7, 2017
Added npm problem fixes
1 parent ca08c91 commit 336c0fd

File tree

2 files changed

+64
-9
lines changed

2 files changed

+64
-9
lines changed
 

‎README.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,38 @@ Plus, I made all the course slides available for download, to make it easier to
1212

1313
**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.
1414

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?
1616

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).
1818

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?
2024

2125
**A:** It's on my website at <http://codingheroes.io/resources>. You can subscribe for updates 😉
2226

23-
### Q4: What VSCode theme are you using?
27+
### Q5: What VSCode theme are you using?
2428

2529
**A:** I use Oceanic Next (dimmed bg) for all my coding and course production. [Here is my complete VSCode setup](vscode-setup.md).
2630

27-
### Q5: The videos don't load, can you fix it?
31+
### Q6: The videos don't load, can you fix it?
2832

2933
**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.
3034

31-
### Q6: Are the videos downloadable as well?
35+
### Q7: Are the videos downloadable as well?
3236

3337
**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.
3438

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?
3640

3741
**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 🔥
3842

39-
### Q8: Can I connect with your other students in some way?
43+
### Q9: Can I connect with your other students in some way?
4044

4145
**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).
4246

43-
### Q9: How do I get my certificate of completion?
47+
### Q10: How do I get my certificate of completion?
4448

4549
**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).

‎npm-fixes.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# 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:
34+
35+
`"prefix:css": "postcss --use autoprefixer -b \"last 10 versions\" css/style.concat.css -o css/style.prefix.css"`
36+
37+
## Q3: General problems
38+
39+
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

Comments
 (0)
Please sign in to comment.