IT칼럼/JavaScript 썸네일형 리스트형 ExpressJS 를 이용하여 index.html 파일 view Use ExpressJS to Deliver HTML Files 다음 command를 사용하여 express js 시작하기 server.js index.html 파일 생성 $ mkdir express-sendfile $ cd express-sendfile $ npm init $ npm install express --save $ touch server.js index.html server.js ar express = require('express'); var app = express(); var path = require('path'); // viewed at http://localhost:8080 app.get('/', function(req, res) { res.sendFile(path.join(__.. 더보기 JSX의 개념과 기본 문법 소개 1. 개념 소개 XML/HTML-like syntax that extends ECMAScript so that XML/HTML-like text can co-exist with JavaScript/React code. 확장자 - .jsx => .js 사용하는 추세 (fb에서는 .react.js) 필요성 JSX는 컴파일링되면서 최적화되므로 빠르다 Type-safe 하다 어떠한 연산도 정의되지 않은 결과를 내놓지 않는다. 즉 예측 불가능한 결과를 나타내지 않는다. 예컨대 1+”1”의 연산이 가능하다거나, 문자열 변수에 숫자를 할당하는 것이 가능하다거나 하는 것은 일면 비논리적이라고 볼 수 있다. 이러한 비논리를 엄격히 체크하여 runtime 시 이로 인한 오류를 발생하지 않도록 하겠다는 개념이 type-sa.. 더보기 Regular Expression What Is a Regular Expression?A regular expression is a sequence of characters that forms a search pattern.When you search for data in a text, you can use this search pattern to describe what you are searching for.A regular expression can be a single character, or a more complicated pattern.Regular expressions can be used to perform all types of text search and text replace operations.Syntax/patt.. 더보기 이전 1 다음