본문 바로가기
  • [성공하는 개발자] - Developer

웹개발7

탭 클릭 시 아래 내용 변경 See the Pen 탭 클릭 시 아래 내용 변경 by SEIN (@JHEcho) on CodePen. 2021. 5. 14.
FullPage / AOS.js https://alvarotrigo.com/fullPage/ fullPage scroll snapping. Create full screen pages fast and simple Mouse wheel snap to sections. Fast and simple to use. alvarotrigo.com jquery-adapter.html 사용 script html jQuery adaptor You can use fullpage.js as a jQuery plugin! Read the docs for more info! Section 2.1 Section 2.2 Section 2.3 Section 3 Section 4 추가 script https://michalsnik.github.io/aos/ AOS .. 2021. 5. 14.
[Node] Express - Hellow 구동 expressjs.com Express - Node.js web application framework Fast, unopinionated, minimalist web framework for Node.js $ npm install express --save expressjs.com 설치 npm install express --save main.js 모든 소스 주석처리 후 const express = require('express') const app = express() const port = 3000 app.get('/', (req, res) => { res.send('Hello World!') }) app.listen(port, () => { console.log(`Example app listen.. 2021. 5. 10.
[Node] 입출력 보안 Security path nodejs path parse node > var path = require('path'); undefined > path.parse('../password.js'); {root: '', dir: '..', base: 'password.js', ext: '.js', name: ''password' } > path.parse('../password.js').base; 'password.js' 사용자로부터 모든 경로가 들어오는 곳을 변경해 줍니다. var path = require('path'); var filteredId = path.parse(queryDate.id).base; fs.readFile(`data/${filteredId}`, 'utf8', function(err, .. 2021. 5. 2.