본문 바로가기

창고 3/[Dev] My Readme27

Learning HTML5 Essentials 2022. 1. 31.
Learning Typescript Essentials The goal of below tutorial is to make a simple money journal in web using typescript. NetNinja - Typescript Understanding Typescript Typescript is a Javascript superset coming with extra features and syntax. Since browser does not understand typescript, it needs to be complied to Javascript to be used in web. Strict types Extra features : generics, interface, tuples Once you are done writing typ.. 2022. 1. 28.
Learning React Essentials 4 Unidirectional data flow in React React has a unidirectional data flow, meaning that data only flows from parent component to child one. The chilld component only receives the state data they need. State management is done in one part of codes and UI rendering is done in another part(separation) class MyApp extends React.Component { constructor(props) { super(props) this.state = { name: "Jake" }.. 2022. 1. 24.
Learning React Essentials 3 2022. 1. 21.
Learning React essentials 1 What is it : Javascript UI library Why learn : is one of the core skill set of front end developer What to learn : React, JSX, Redux, React-Redux Runtime : Node JS Rivals : Vue, Angular One step further : React with Typescript, React with Node JS Goal : Meow canvas refactoring with React/TS Create a React app npx create-react-app Once you create a react app, look at the directories to get more u.. 2022. 1. 18.
Understanding asynchronous Javascript Asynchronous Javascript is very important topic since it controls a work flow that takes long time to finish. For example, saving model as an instance in database fetching external data from APIs in server This markdown docs summarizes below to lectures about asynchronous Javascript and JSON APIs. NetNinja : Asynchronous Javascript Free code camp : JSON APIs and Ajax Asynchronous Javascript Java.. 2022. 1. 17.

loading