하루하나
close
프로필 배경
프로필 로고

하루하나

  • ALL (217)
    • 쿠베플로우 kubeflow (1)
    • React Native (1)
      • Expo (1)
    • Programming (187)
      • spring+jwt+react (4)
      • wordpress (3)
      • Vultr (1)
      • Flutter (3)
      • Vue-project (1)
      • Vue-tip (17)
      • AngularJS (12)
      • Bootstrap (2)
      • Book (1)
      • CentOS (5)
      • Code (0)
      • Css (13)
      • Docker (7)
      • Eclipse (1)
      • Freemarker (1)
      • Git (9)
      • Front-End (6)
      • Error (7)
      • Gulp.js (0)
      • Java (12)
      • Python (5)
      • Javascript (19)
      • JPA (5)
      • jQuery (2)
      • Mac (6)
      • MySql (4)
      • Springboot (21)
      • Springboot-blog (0)
      • Daily (1)
      • Springboot-tip (3)
      • Spring (1)
      • Thymeleaf (1)
      • Tomcat (1)
      • Typescript (3)
      • Tool (5)
      • Sql (1)
      • prisma (1)
      • react (1)
    • Life (14)
      • Review (0)
      • Tip (3)
      • 리뷰 (8)
      • 부동산 (2)
  • 홈
  • 태그
  • 미디어로그
  • 위치로그
  • 방명록
[Typescript/1Day]  실습준비

[Typescript/1Day] 실습준비

IDE는 VSCode를 사용하며 Node.js가 설치되어 있어야 합니다. # 디렉토리 생성 mkdir typescript-study cd typescript-study # npm v프로젝트 초기화 npm init ... #TSC, TSLint, NodeJs용 타입 설치 npm install --save-dev typescript tslint @types/node # tsconfig.json 생성 touch tsconfig.json (IDE에서 파일을 직접 생성해도 된다) { "compilerOptions": { "lib": ["ES2015"], // 실행환경에 이용할수 있다고 가정하는 API "module": "commonjs", // TSC가 컴파일할 대상 모듈 시스템 "outDir": "dist", ..

  • format_list_bulleted Programming/Typescript
  • · 2021. 2. 19.
  • textsms

express.js에서 curl 호출 방법 [post]

curl -X POST --data "payload={\"text\": \"invalid token exception\"}" http://google.com 위와 같은 curl을 express.js에서 호출해야한다면? 아래와 같이 "request"를 이용하자 var request = require('request'); request.post({ headers: {'content-type' : 'application/json'} , url: , body: } , function(error, response, body){ console.log(body); });

  • format_list_bulleted Programming/Javascript
  • · 2021. 2. 16.
  • textsms

[javascript] 소수점 올림,내림,반올림,자리수

var number = 1.5555 // 내림 : 1Math.floor(number) // 올림: 2Math.ceil(number) // 반올림: 2Math.round(number) // 소수점 자리수 자르기: 1.55number.toFixed(2) 더 자세한 정보는 아래링크 참조https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Math

  • format_list_bulleted Programming/Javascript
  • · 2021. 1. 19.
  • textsms

springboot + kotlin + zull proxy 예제

build.gadle 에 netflix-zuul 추가 implementation("org.springframework.cloud:spring-cloud-starter-netflix-zuul") WebApplication.kt에 annotation 추가 @EnableZuulProxy application.yml에 zuul routes 추가 zuul: routes: user-api: path: /user/** url: http://api.com stripPrefix: true /users/** 로 들어오는 응답을 api.com으로 응답을 보내고 받는다. stripPrefix 옵션은 path 부분을 잘라서 보낼지 여부이다.

  • format_list_bulleted Programming/Springboot
  • · 2020. 12. 29.
  • textsms

git remote branch 일괄삭제

- local 브런치 일괄삭제 git branch -D $(git branch --list 'feature/*') - 불필요한 remote branch를 일괄삭제하는 방법 (branch 부분을 적당히 변경하면 된다) git branch -r | grep -Eo 'feature/.*' | xargs -I {} git push origin :{} - 삭제한 remote branch와 local branch를 동기화 하려면 아래 명령어 이용 git fetch --all --prune git remote prune origin

  • format_list_bulleted Programming/Git
  • · 2020. 12. 7.
  • textsms

[jRebel] springboot 2.4.0 error

2020-11-23 22:56:58 JRebel: ERROR Class 'org.springframework.web.servlet.handler.AbstractHandlerMethodMapping' could not be processed by org.zeroturnaround.javarebel.integration.spring.cbp.AbstractHandlerMethodMappingCBP@jdk.internal.loader.ClassLoaders$AppClassLoader@2e5c649: org.zeroturnaround.bundled.javassist.CannotCompileException: [source error] getMappings() not found in org.springframewo..

  • format_list_bulleted Programming/Java
  • · 2020. 11. 23.
  • textsms
  • navigate_before
  • 1
  • ···
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • ···
  • 32
  • navigate_next
반응형
공지사항
전체 카테고리
  • ALL (217)
    • 쿠베플로우 kubeflow (1)
    • React Native (1)
      • Expo (1)
    • Programming (187)
      • spring+jwt+react (4)
      • wordpress (3)
      • Vultr (1)
      • Flutter (3)
      • Vue-project (1)
      • Vue-tip (17)
      • AngularJS (12)
      • Bootstrap (2)
      • Book (1)
      • CentOS (5)
      • Code (0)
      • Css (13)
      • Docker (7)
      • Eclipse (1)
      • Freemarker (1)
      • Git (9)
      • Front-End (6)
      • Error (7)
      • Gulp.js (0)
      • Java (12)
      • Python (5)
      • Javascript (19)
      • JPA (5)
      • jQuery (2)
      • Mac (6)
      • MySql (4)
      • Springboot (21)
      • Springboot-blog (0)
      • Daily (1)
      • Springboot-tip (3)
      • Spring (1)
      • Thymeleaf (1)
      • Tomcat (1)
      • Typescript (3)
      • Tool (5)
      • Sql (1)
      • prisma (1)
      • react (1)
    • Life (14)
      • Review (0)
      • Tip (3)
      • 리뷰 (8)
      • 부동산 (2)
최근 글
인기 글
최근 댓글
태그
  • #css
  • #Vue
  • #MySQL
  • #javascript
  • #AngularJS
  • #sts
  • #springboot
  • #error
  • #JPA
  • #GIT
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바