JSJunho Shininjunho-shin.hashnode.dev·Dec 9, 2022 · 4 min readWeb and Express.jsWeb Service What is Web? World Wide Web In Dictionary : Web is services, operating on the internet. General Meaning : All websites accessed by web browser. Web is equal to website in this post. Web Service Operation Method Web is basically endles...00
JSJunho Shininjunho-shin.hashnode.dev·Dec 9, 2022 · 6 min readNode Package Manager(NPM)Understanding of NPM What is NPM? Node Package Manager. NPM is a necessary tool to manage Node.js project. Online Storage + Command Line tool What is NPM Online Storage? It is a place for numerous open source libraries and tools to be uploaded. We...00
JSJunho Shininjunho-shin.hashnode.dev·Dec 9, 2022 · 4 min readNode.jsES6 What is ES6? ECMAScript 6 is called ES6. What is ECMAScript? It is a standard syntax of Javascript. Many modern syntax as been added to Javascript After ECMAScript version 6. Why do we have to use ES6? Modern syntax helps us with productivit...00
JSJunho Shininjunho-shin.hashnode.dev·Dec 8, 2022 · 7 min readJavascript Detailed ReviewJavascript Introduction What is Javascript? Javascript is used to make interactive web pages for example image slide effects, pop up animation. Where is this language used? IOT Hybrid Apps Server Development Javascript Variable What is variable? ...00
JSJunho Shininjunho-shin.hashnode.dev·Dec 7, 2022 · 3 min readHTML/CSS Website LayoutBox Model The structure of Box Model Difference between margin and padding <style> div { ...... margin-left: 100px; padding-left: 100px; } div { margin: 100px 0 0 100px; /* top right bottom left */ padding: 100px 0 0 100px;...00