본문 바로가기

창고 331

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.
How to automatically save your codes in VSC Live Server Extension Installaion There had been a lot of trials and errors to exercise HTML basics. Pressing control + S regularly is a such pain in my finger whenever editing CSS codes for a webpage. Luckily, there is an extension in Visual Studio Code to help automatically save codes we have written so far. I found the extension extremely helpful so wanted to share with other developers. To a.. 2022. 1. 17.

loading