본문 바로가기

Web Development16

4. HTML: Next Steps & Semantics 남길 것들만 남길 계획이다. 32. What Exactly Is HTML5? Living Standard - the HTML standard is a document that describe how HTML should work. Role of Browsers - the standard describees the rules of HTML, but browsers actually have to do the work and implement HTML acording to those rules. HTML5 - HTML5 is the latest evolution of the standard that defines HTML. It includes new elements & features for browsers.. 2022. 3. 14.
32. Exploring Modules & The NPM Universe 323. Working With module.exports ./math.js module.exports = { add: (a, b) => a + b, PI: 3.14159 } ./app.js const { add, PI } = require('./math') console.log(add(2, 4)); console.log(PI); 324. Requiring A Directory When requiring a directory, index.js file will be used in Node 325. Introducing NPM NPM - Node Package Manager - A library of thousands of packages published by other developers that we.. 2022. 1. 28.
31. Our First Brush With Node 318. The Node REPL - REPL: Read-Eval-Print Loop 320 - 321. global - The global namespace object process - It provides information about, and control over, the current Node.js process. process.argv - Returns an array containing the command-line arguments passed when the Node.js process was launched. fs - It enables interacting with the file system in a way modeled on standard POSIX functions. con.. 2022. 1. 27.
30. Mastering The Terminal 305. Why Do We Need to Know Terminal Commands? - Speed, access, many tools - Terminal: A text-based interface to computer. Originally a physical object, but now we use software terminals. - Shell: The program running on the terminal. - Bash: One of the most popular shells 306. The Basics: ls & pwd - ls: List files and directories - pwd: Print working directory 307. Changing Directories - cd: Cha.. 2022. 1. 16.