πŸ€– Coding News ⚑️
27.1K subscribers
2 photos
1 video
807 links
High quality articles, videos, and tutorials about programming πŸ’»

HTML, CSS, Sass, JavaScript, TypeScript, React, Angular, Electron, Node, Vue, GraphQL and other topics πŸ’₯

@CodingChat talk with other engineers
@CodingNewsFeedbackBot advertisement
Download Telegram
​​JavaScript has been evolving very rapidly in recent years. Especially after the release of ES6 in 2015, things have been great. A lot of new features were being proposed to be included in the ES2020 version.

⏱ 6 min read

πŸ”˜ #JavaScript
​​Visual Studio by Microsoft is one of the top integrated development environments (IDEs). It enables developers to integrate their existing development suite with other applications, adding a lot of features in the process to boost your productivity. As a part of Microsoft’s efforts to open source their code, Visual Studio is available as free and open-source software.

⏱ 7 min read

#IDE
​​This is the typical structure I use for my medium-sized Node backends. For small backends, I'd probably just put everything in one file and I might not bother with build tooling.

⏱ 7 min read

#Node
​​Okay, now for some reason, you’ve finally chosen Chrome as the browser you’re developing for. Then you open Developer Tools and start debugging your code...

⏱ 8 min read

#Chrome
​​Don’t get me wrong, I like Firebaseβ€Šβ€”β€Šbut with everything dev related, there’s always a good and bad side, with a pinch of annoying that no one really wants to talk about.

⏱ 6 min read

#Firebase
​​JavaScript is now a very popular programming language, based on which a large number of libraries and frameworks have been derived. But no matter how the upper ecosystem evolves, it can’t do without vanilla JavaScript. Here I’ve selected 4 JavaScript interview questions to test a programmer’s skill of vanilla JavaScript.

⏱ 11 min read

#JavaScript
​​Understanding Data Structures is helpful in all aspects of programming, you don’t need to have a particular use case where you’ll use a Tree or a Graph to have to consider learning about them. In fact, I don’t think I’ve ever implemented a proper Tree structure in my 15 years of software development, however, understanding how they work has helped me several times in the past.

⏱ 12 min read

#JavaScript
​​5 Different Ways to Remove Specific Characters From a String in Python. Using string methods, filter, and regexes

⏱ 5 minutes read

#Python
​​React + Firebase is a powerful combination for quickly and securely building apps, from proof-of-concept straight through massive scale production.

⏱ 6 minutes read

#React #Firebase
​​Have you always wanted to play a trick on a fellow web developer?
Or do you want to prove your useless knowledge?
Here are some nasty one-liners to really turn a web project upside down.

⏱ 4 minutes read

#JavaScript
​​We’re excited to announce that Node.js 15 was released today. Node.js 15 replaces Node.js 14 as our β€˜current’ release line, with Node.js 14 being promoted to LTS (long-term support) later this month.

⏱ 5 minutes read

#Node
​​React code is ugly. I’m not talking about any technical trait of the framework; I’m talking straightforward aesthetics, how the code looks on my screen, and the feelings it evokes.

⏱ 9 minutes read

#React
​​Here I have hand-picked some of the most useful code snippets from 30 seconds of code. It’s an awesome resource, go ahead and show it some love.

⏱ 5 minutes read

#JavaScript
​​Development frameworks are used to organize the development progress. Developers get the ready structure for their code base, can apply reusable elements, and increase product speed. Using web frameworks for the front end is common β€” developers use frameworks to work with JavaScript.

⏱ 11 minutes read

#Node #JavaScript
​​The shorthand techniques of any programming language help you to write more clean and optimized code and lets you achieve your goal with less coding. Let’s discuss some of the shorthand techniques of JavaScript one by one.

⏱ 6 minutes read

#JavaScript