Modern Digital Website Security: Prepare to face any form of malicious web activity and enable your sites to optimally serve your customers.
Low-Code Development: Learn the concepts of low code, features + use cases for professional devs, and the low-code implementation process.
Works at Code Maze
About
Hi, my name is Marinko Spasojevic. Currently I work as a full time .NET developer and my passion is web application development. Just getting something to work is not enough for me. To make it just how I like it, it must be readable, reusable and easy to maintain. Prior to being an author on the CodeMaze blog, I had been working as a professor of Computer Science for several years. So sharing the knowledge while working as a full-time developer comes naturally to me. My hope is that the experience and knowledge I share, will help you improve your own and that you will learn something new by reading through my posts. twitter: @MareSpasojevic
Stats
Reputation: | 294 |
Pageviews: | 71.6K |
Articles: | 0 |
Comments: | 6 |
Comments
Mar 01, 2018 · Jordan Baker
Ok mate, you misunderstood me. I just said if you don't trust me, then try to ask google, not that I don't want you to ask me. Second, here it is: don't bother with --dev :D
https://stackoverflow.com/questions/22891211/what-is-the-difference-between-save-and-save-dev.
Third, I don't know answers to all the questions, I never used --dev and for your question I had to ask google also as you may notice from the link above.
And finally it is your right to think did I write this or not, I have the whole series behind me and many parts to come.
Mar 01, 2018 · Jordan Baker
Hi Thai. For the --sev and --save-dev difference look at this link:
https://stackoverflow.com/questions/22891211/what-is-the-difference-between-save-and-save-dev
Basically -dev is only used for development mode but for real production you need --save.
Second about jquery reference, it is always the best practice to use the reference as I did in my project, especially if you use AngularCLI for developing.
Finally, if you have no trust in my answers, then feel free to ask the almighty GOOGLE :D
Feb 28, 2018 · Jordan Baker
Yes you can.
Feb 28, 2018 · Jordan Baker
This is the continuation of the previous answer...
By the time I was making this series about .NET Core, Angular and MySQL, it was Angular 4. But it doesn't matter, it will all work the same. And yes you are right. Now Angular CLI will create version 5 of the Angular project.
Feb 28, 2018 · Jordan Baker
Hi Thai Dang Vu. Thank you a lot for reading this article.
You need the types because the typescript needs it to compile the third party libraries javascript code. Basically bootstrap has its own jquery and if you try to call it ($.something) typescript won't recognize it as a valid statement until you install types for that library.
It doesn't matter it is 3.3.8, it will cover the types of bootstrap. And finally, you need --save because the reference of that type will be stored in the package.json file which is very important for npm install.
Feb 21, 2018 · Jordan Baker
Thank you Mostafiz R Rahman. I'm glad you liked it.