일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- vaadin
- SSL
- Python
- hadoop
- Sqoop
- GIT
- 공정능력
- Java
- IntelliJ
- 보조정렬
- plugin
- JavaScript
- tomcat
- Spring
- Kotlin
- NPM
- xPlatform
- table
- es6
- SPC
- SQL
- mapreduce
- Express
- window
- MSSQL
- Android
- mybatis
- R
- react
- Eclipse
- Today
- Total
목록front-end & ui (119)
DBILITY
es6부터 변수,함수,클래스를 모듈화했을때 import/export라는 문법을 쓸 수 있나? 대략 다음과 같다. //lib.js var x = 10; var y = 20; var z = 30; export function fn() { console.log('export function'); } export class Class { constructor(name) { this.name = name; this.age = '김수한무 거북이와 두루비 삼천갑자 동박삭 치치카포 사리사리센타 워리워리 세브리깡 무두셀라 구름이 허리케인에 담벼락 담벼락에 서생원 서생원에 고양이 고양이엔 바둑이 바둑이는 돌돌이'; } sayWelcome() { console.log(`어서와~ ${this.name}님`); } get ge..
Array나 Object의 자료를 꺼내 변수에 할당하는 경우는 많다. 손쉽게 할 수 있는 destructuring문법이 추가되었다. var [a, b, c, d = 0, e] = [1, 2, 3]; console.log(a); console.log(b); console.log(c); console.log(d); console.log(e); var obj = {name: '이도', born: 1397, age: new Date().getFullYear() - 1397}; console.log(obj); var {name} = obj; console.log(name); var {name, born, age = 100} = obj; console.log(name, born, age); var {name, bo..
nodemon은 서버 개발 시 재시작을 자동으로 처리해 준다. 설치후 실행하니 다음과 같은 오류는 권한문제라고 한다. PS C:\Dev64\workspace\app> nodemon server.js nodemon : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Dev64\workspace\app\node_modules\.bin\nodemon.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/ ?LinkID=135170)를 참조하십시오. + nodemon server.js + ~~~~~~~ + CategoryInfo : 보안 오류: (:) [], PSSecurityException + FullyQua..
그냥 New Project에서create-react-app부분에 --template cra-template-pwa를 추가하고 생성하면 되더라. npm build해보니 asset-manifest.json도 있다. index.js안에 serviceWorkerRegistration.unregister();를 serviceWorkerRegistration.register();로 변경하고 build. 이제 react 초보 학습중이라 build후 배포하고 실행해 보진 못했다. import React from 'react'; import ReactDOM from 'react-dom'; import './index.css'; import App from './App'; import * as serviceWorkerRe..
무언가를 하다 intellij를 종료하였던지 여하튼 npm start하니 다음과 같이 동일포트를 사용 중이라 나온다. ? Something is already running on port 3000. Would you like to run the app on another port instead? » (Y/n) node가 죽지 않은 모양이다. 또는 다른 프로세스가 있을 수도. PS C:\Dev64\workspace\blog> ps -name node Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName ------- ------ ----- ----- ------ -- -- ----------- 147 60 99916 109824 3.77 4768 1 node PS C..