πŸ€– 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
​​As a developer you probably need Git on a daily basis. There are lots of articles about basic Git commands already that explain it better than I could ever do, e.g. here by KodeHauz Inc, here by Goran Aviani, and here by Saurabh Kulshrestha. Their articles are awesome. Check them out.

#git
​​React 17 release is unique. There are hardly any new features you will notice. However, you can find several high-impact improvements to React core. Out of these, the changes for JSX is quite noticeable.

⏱ 5 minutes read

#React
​​REST has been used by many developers to send data over HTTP whereas GraphQL is typically presented as a technology to replace the legacy of REST APIs. In this article, I’ll be explaining the benefits, limitations, and differences between these two, which will help you decide what to chose for your next project.

⏱ 5 minutes read

#GraphQL
​​Users love fast web apps. They expect the page to load fast and to function smoothly. If there are breaking animations or lags when scrolling, there is a high chance of users leaving your website. As a developer, you could do many things to improve the user experience. This article will focus on 4 CSS tips you can use to improve the page rendering speed.

⏱ 6 minutes read

#CSS
​​Both npm and Yarn are great package managers for Node.js and Javascript. But have you ever wondered why Yarn was developed when there was already npm? It was built by Facebook to solve major problems they faced with npm, such as slower installation of packages and there were also a few security issues in npm. In this article, I’ll compare both these package managers, so that you can decide which one suits your needs better.

⏱ 3 minutes read

#NPM #yarn
​​Browser APIs (or web APIs) are the APIs that come built-in with the browsers. They allow developers to perform complex operations without dealing with the sophisticated lower-level code. There are a number of browser APIs for manipulating the DOM, making network requests, managing client-side storage, and retrieving device media streams, etc.

⏱ 7 minutes read

#API
πŸ€– Coding News ⚑️ pinned «​​React 17 release is unique. There are hardly any new features you will notice. However, you can find several high-impact improvements to React core. Out of these, the changes for JSX is quite noticeable. ⏱ 5 minutes read #ReactΒ»
​​When you become good at something, you can hit a wall in your development. No matter how hard you try, you feel like you can’t break through it. Pushing harder doesn’t pay off as much as before.

⏱ 12 minutes read

#Career
​​An architectural pattern is a general, reusable solution to a commonly occurring problem in software architecture within a given context.

⏱ 8 minutes read

#Architecture
​​The search function is one of the most important features of a software application. Search sites like Google and DuckDuckGo have helped millions of users to navigate through the internet and quickly find what they’re looking for in mere seconds.

⏱ 8 minutes read

#React #Serverless
​​Recently, I’ve written an article about some signs of an inexperienced developer. Just like you can recognize inexperienced developers by their habits the same applies to senior developers.

⏱ 4 minutes read

#Career
​​GraphQL is a strongly typed query language, and Typescript is a typed superset of JavaScript β€” together they are a match made in heaven!

⏱ 15 minutes read

#TypeScript #Node #GraphQL
​​Ever since ES2015, also known as ES6, JavaScript has moved away from a waterfall style approach where loads of features were released at once under a major version, to a more agile approach where new features are released annually as the spec is completed. This has allowed new language features to be added every year since. These features can be large and small, but they all tend to be well battle-tested through the use of transpiling and polyfills before their official release. In fact, when they actually become β€œofficial” it’s actually pretty underwhelming since the community has been using them for some time.

⏱ 4 minutes read

#JavaScript
​​I was looking around the web and realized we haven’t had a good JavaScript Framework Performance Shootout in over 2 years. So before 2020 wraps up, let’s have a bit of fun pitting these libraries against each other.

⏱ 13 minutes read

#JavaScript
​​Every software has best practices. Git is not different. It has become the most used versioning system in the last years. Many companies adopted git because of its features.

⏱ 5 minutes read

#Git