Showing posts with label typescript. Show all posts
Showing posts with label typescript. Show all posts
Tuesday, November 26, 2019
Monday, November 25, 2019
TypeScript Recipe: Type Transformations in Practice
Tuesday, June 5, 2018
TypeScript Recipe: Elegant Parse Boolean
Thursday, April 5, 2018
React Recipe: Components Error Handling
This article is about the Errors Handling in React Components using TypeScript
Not handled error in any part of the UI could crash the whole application.
Error Boundaries only catch errors in the components below them in the tree.
As of React 16, errors that were not caught by any error boundary will result in unmounting of the whole React component tree.
Catch JavaScript errors anywhere in their child component tree, log those errors, and display a fallback UI.
Use JS error reporting services, so that you can learn about unhandled exceptions as they happen in production, and fix them.
Thursday, June 29, 2017
JavaScript Recipe: Round to a number of decimal places stripping trailing zeros
JS uses binary floating point to handle decimal based operations.
JavaScript calculations with floating point causes the Nonsense cases especially during the result comparisons & displaying.
If the variable was created as a Number, not a String, extra trailing zeros would be dropped automatically.
Friday, March 31, 2017
Angular recipe: Get State updates from Redux
Monday, March 6, 2017
Keynote: Quick Creation of Angular2 App
This article is about fast setup & start working on your ng2 application.
The process feels quite similar to Node modules creation through npm CLI commands, but here we will use Angular Command Line Interface (Angular-CLI).
The process feels quite similar to Node modules creation through npm CLI commands, but here we will use Angular Command Line Interface (Angular-CLI).
Monday, June 27, 2016
Keynote: Angular2 Basic Short Notes
Angular2
Superheroic, non-opinionated Framework.
Angular delivers the productivity and scalable infrastructure that supports Google's largest applications.
Despite the fact that, new 2.0 version of Angular is focused on ES6 standart and is Not compatible with the 1.4, it's definitely worth to use it.
Angular leverages ES 2015 standards and doesn't force you to stuck with one option.
You can use TypeScript, Dart or JavaScript to write your application.
You can use TypeScript, Dart or JavaScript to write your application.
Friday, June 3, 2016
Boost your TypeScript code quality with TSLint
TSLint checks your TypeScript code for readability, maintainability, and functionality errors.
Subscribe to:
Posts (Atom)








