Every developer needs a nice set of tools to help him to be more productive and focused towards his work. It may not be very easy for everyone to find a good set of tools. In this post, I am listing the tools that I have used and which may be very useful for you. IDEs IDEs are one of the most important tools that every developer needs. Some of the awesome IDEs that I have used and would recommend you are- 1) Adobe Brackets Brackets is a very lightweight IDE with many extensions giving it superpowers. If you are working on a small scale project and need speed, then Brackets is for you. It has awesome support for HTML, CSS and JS including smart autocomplete suggestions. Support for more languages can be extended via numerous extensions. Smart live preview gives more to programmers as they can see the changes as they code. This IDE is absolutely free of cost and available for downloading at http://brackets.io/ . 2) VS Code Visual Studio Code gives the power of Microsoft's Visual S
Have you ever tried Sass in your StyleSheets? If not, then you will start using it from today. Sass is a CSS Preprocessor. Although, I am not going to explain what is Sass etc, but I am going to share some of the most useful features of Sass which I use a lot. So without wasting a single minute let's get started. 1)Variables: We would have used variables in programming languages like JavaScript, Python, C etc. But we can use variables in Sass also. Variables in Sass are mostly used to store colors, font size, etc. When we are dealing with many colors like #ffc000 or #ffff00 etc and our Sty leSheets become very large it becomes very difficult for us to remember each color's hex code and we mess up. We can overcome this problem by using variables. We can save #ffff00 as $yellow and use the color by the variable name wherever we want. You can see this in action in the below embed - See the Pen Sass Variables by PraneetDixit ( @PraneetDixit ) on CodePen 2)Ne
Comments
Post a comment