전체 글
-
Vuejs + vuetify 설치자바스크립트[JavaScript]/Vuejs 2020. 9. 6. 01:30
1.vue cli 설치 install -g @vue/cli 2.vue 설치 (필요한부분 설정하여 설치) vue create Please pick a preset: Manually select features Check the features needed for your project: Choose Vue version, Babel, TS, PWA, Router, Vuex, CSS Pre-processors, Linter Choose a version of Vue.js that you want to start the project with 2.x Use class-style component syntax? Yes Use Babel alongside TypeScript (required for modern ..
-
라라벨[Laravel] JWT 구현PHP/라라벨[Laravel] 2020. 9. 5. 23:34
1. jwt 설치 - composer require tymon/jwt-auth 2. config에 jwt 파일추가 - php artisan vendor:publish --provider="Tymon\JWTAuth\Providers\JWTAuthServiceProvider" - config/jwt.php 파일 확인 3. .env 파일에 secret키추가 - php artisan jwt:secret - .env 파일에 JWT_SECRET 키 확인 4. app/Http/Kernel.php $routeMiddleware 변수안에 아래내용 추가 - protected $routeMiddleware =[ 'auth.jwt' => \Tymon\JWTAuth\Http\Middleware\Authenticate::clas..
-
코드이그나이터[CodeIgniter] 설치방법PHP/코드이그나이터[CodeIgniter] 2019. 11. 5. 09:52
영문 매뉴얼 : https://codeigniter.com/ CodeIgniter Web Framework The latest is Version 3.1.11 codeigniter.com 영문 매뉴얼 주소로 접속 후 Download 버튼 클릭 -> 버전 선택후 Download 버튼클릭 한글 매뉴얼 : http://www.ciboard.co.kr/user_guide/kr/ 코드이그나이터 3.0 한글매뉴얼 © Copyright 2014 - 2016, British Columbia Institute of Technology. Last updated on Mar 21, 2016. www.ciboard.co.kr 한글 매뉴얼 주소로 접속 후 설치하기 -> CodeIngiter 다운로드하기 클릭 -> 원하는 버전 ..
-
앵귤러[Angular] @auth0/angular-jwt 설치자바스크립트[JavaScript]/앵귤러[Angular] 2019. 6. 21. 01:47
※ 관련 정보 - https://www.npmjs.com/package/@auth0/angular-jwt @auth0/angular-jwt JSON Web Token helper library for Angular www.npmjs.com - GitHub URL : https://github.com/auth0/angular2-jwt auth0/angular2-jwt Helper library for handling JWTs in Angular 2+ apps - auth0/angular2-jwt github.com 1. npm 멸령어 실행 - npm install @auth0/angular-jwt 2. 최상위 모듈(AppModule) import import { } form''; export functio..
-
앵귤러[Angular] 부트스트랩[ngx-bootstrap] 설치자바스크립트[JavaScript]/앵귤러[Angular] 2019. 6. 21. 01:23
※ 관련 정보 - GitHub URL : https://github.com/valor-software/ngx-bootstrap valor-software/ngx-bootstrap Fast and reliable Bootstrap widgets in Angular. Contribute to valor-software/ngx-bootstrap development by creating an account on GitHub. github.com - DocumentAtion URL : https://valor-software.com/ngx-bootstrap/#/alerts Angular Bootstrap valor-software.com 1. 사전 조건 앵귤러CLI 설치 및 프로젝트 생성 2. npm 명령어 실..
-
앵귤러[Angular] CLI로 프로젝트 생성자바스크립트[JavaScript]/앵귤러[Angular] 2019. 6. 21. 01:00
캐시 삭제방법 - npm cache verify 1. CLI 설치 - npm install -g @angular/cli ※ 구버전 삭제방법 npm uninstall -g @angular/cli 2. 프로젝트 생성 - ng new 프로젝트명 - Would you like to add Angular routing? + yes - Which stylesheet format would you like to use? + css / scss / sass / less / stylus 중 선택 3. 프로젝트 실행 - ng serve 브라우저 url : http://localhost:4200/
-
일렉트론 [Electron] 배포 Installer 생성하기자바스크립트[JavaScript]/일렉트론[Electron] 2019. 4. 19. 14:04
일렉트론에서 일반적으로 electron-builder 또는 electron-packager 를 사용 개인적으로는 electron-packager는 사용하기 편하지만 디테일한 부분을 수정하기에는 번거로움 샘플링 결과 electron-builder로 사용함 - electron-builder + GitHub URL : https://github.com/electron-userland/electron-builder electron-userland/electron-builder A complete solution to package and build a ready for distribution Electron app with “auto update” support out of the box - electron-u..
-
일렉트론[Electron] 설치 방법자바스크립트[JavaScript]/일렉트론[Electron] 2018. 10. 12. 10:45
※ 일렉트론 설치 - URL : https://electronjs.org/docs/tutorial/first-app - 선행작업 + npm 설치 - npm init + package name[프로젝트 명] : 입력 + version[파일의 버전] :입력 + description[수행 작업 내용] : 입력 + entry point : 입력 + test command : 입력 + git repository[github 저장소] : 입력 + keywords[프로젝트 키워드] : 입력 + author[개인이나 팀 또는 회사명등] : 입력 + license[라이센스에 대한 내용] : 입력 + Is this OK? (yes) : 입력 - npm install electron --save-dev ※ 일렉트론 예제 설..