πŸ€– Coding News ⚑️
27.2K 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
​​The recent survey by Stack Overflow shows that today JavaScript is more popular than ever. Actually, almost 70% of professional developers use this programming language. What does this data give us? The point is that you should know JavaScript to build web applications users will love.

⏱ 5 minutes read

#JavaScript
​​Every developer has a favorite IDE. I do as well. (I’ll reveal my personal favorite at the end of this article πŸ˜ƒ)

⏱ 6 minutes read

#IDE #TextEditor
​​After working for a while with Node.js I’ve come to the conclusion that there is no better tool to use when writing microservices. Of course, that is my opinion, completely biased by my preference for JavaScript as a language. But hey, even without me pushing my own opinion into your eyes, I bet you can’t say Node.js isn’t a great tool for building microservices.

⏱ 11 minutes

#Node
​​Using CSS frameworks like Bootstrap, Materialize CSS has become a common practice among frontend developers.
But have you ever thought of the impact these frameworks make on your application’s performance?

⏱ 5 minutes read

#CSS
​​JavaScript is used everywhere today. It runs in your browser as well as in your backend. Besides, JavaScript is a highly dependent ecosystem on third-party libraries. Therefore, securing JavaScript requires following best practices to reduce the attack surface.
But, how do we keep JavaScript applications secure? Let’s find out.

⏱ 6 minutes read

#JavaScript #Security
​​React Hooks are a function type that allows you to hook into React state and lifecycle features. This feature was first introduced on React 16.8 update, and since then, it has become an essential part of any React application.

#React
​​When researching the internet and the technologies behind it, you might have come across this term: HTTP. HTTP, or Hypertext Transfer Protocol, is the backbone of the web and is the universal protocol for transferring text data. You have no doubt used it, as the website you learned about HTTP on uses HTTP.

⏱ 4 minutes read

#HTTP
​​The React Team has recently released a new alpha version of React 18. The main addition to this new version is concurrent features that improve the performance of your React application.

⏱ 5 minutes read

#React
​​When you get the chance to build large frontends, the need arises for a global store of state in your app. This could be to store data about the user that is logged in, maintain metadata for specific parts of your UI or data from a service. The question that comes about is how can you actually implement this?

⏱ 8 minutes read

#React
​​I’ve recently β€œdiscovered” and old laptop forgotten somewhere in the depths of my basement and decided to create a mini home lab with it where I could play around with Kubernetes.

⏱ 6 minutes read

#Kubernetes
​​React is a JavaScript library that lets you create a prime UI for both mobile and web applications. It integrates seamlessly with other JavaScript frameworks and libraries and includes small, reusable pieces of code, called components. Due to their high modularity, React component libraries not only optimize UI development but also provide extreme flexibility.

⏱ 5 minutes read

#React
​​Typescript is the next big thing in the Front End Development domain and if you are looking to upgrade your skills from a junior to an intermediate frontend developer, then it is a must have skill.

⏱ 6 minutes read

#React #TypeScript
​​When I first learned how to use Redux, it was a bit overwhelming keeping up with the different files, functions, types, actions, and reducers necessary to make it work.

⏱ 5 minutes read

#React
​​Docker introduced containers technology as mainstream around 2013. Since then, containerization became an integral part of cloud and digital transformations. Nowadays most of the traditional server workloads such as web APIs, web apps (broadly speaking server side workloads), are containerized.

⏱ 5 minutes read

#Docker
​​UUID is one of the most used universal identifiers in software development. However, over the past few years, other alternatives challenged its existence.

⏱ 5 minutes read

#JavaScript #Tools
​​I have a request to perform some Google API search for some keywords and save the result (the URLs) into text files. It's a good chance to use Go’s concurrency pattern to assembly the pipeline, therefore, parallelizing the IO and CPU.

⏱ 4 minutes read

#Go