일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- apple
- WebAuthn
- 2FA
- SWIFT
- SwiftUI
- kmip
- 앨범북
- SSH
- albumbook
- Nodejs
- 인증
- SSL
- Xcode
- MFA
- appres
- fido
- otpkey
- MSYS2
- MYSQL
- OSX
- 안드로이드
- 애플
- openssl
- FIDO2
- 앱스토어
- git
- Android
- OTP
- css
- 앱리소스
- Today
- Total
목록개발 플랫폼 및 언어/앵귤러 Algular (7)
인디노트
const ipv4Regex = /^(\d{1,3}\.){3}\d{1,3}$/; if (ipv4Regex.test(ipAddress)) { console.log('This is an IPv4 address'); } const ipv6Regex = /^([\da-fA-F]{1,4}:){7}[\da-fA-F]{1,4}$/; if (ipv6Regex.test(ipAddress)) { console.log('This is an IPv6 address'); } Angular에서 net 모듈을 사용하여 isIPv4() 및 isIPv6() 함수를 사용할 수도 있습니다. net 모듈은 Node.js의 내장 모듈이므로, Angular에서 사용하기 위해서는 @types/node 패키지를 설치하여야 합니다. 하지만 이 방법..
Angular에서 environment 값은 src/environments 폴더의 environment.ts 파일에서 가져올 수 있습니다. 이 파일은 기본적으로 개발 환경에서 사용되며, environment.prod.ts 파일은 프로덕션 환경에서 사용됩니다. environment.ts 파일에는 개발 환경에서 사용할 수 있는 모든 변수와 값이 포함되어 있습니다. 이 파일을 열어보면 다음과 같은 코드를 볼 수 있습니다. export const environment = { production: false, apiUrl: 'http://localhost:3000/api' }; 위의 코드에서 production 변수는 false로 설정되어 있으므로 개발 환경을 나타냅니다. apiUrl 변수는 개발 환경에서 사용할..
Axios 를 이용하여 파일을 다운로드 하는 방법의 소개 thewebtier.com/snippets/download-files-with-axios/ Download Files with Axios - The Web Tier Download Files with Axios - Snippets thewebtier.com
Angular 에 jquery 와 backstretch 를 사용하기 위해서는 해당 라이브러리를 설치해야 하는데, 인터넷에 발품을 팔면 여러가지 방법들이 존재하지만 딱히 뭐 하나 따라하기 식으로 완전하게 설명된 것은 없어서 가장 정확한 케이스를 만들어 놓기 위해서 새로운 Angular 프로젝트를 하나 생성해서 따라하기 식으로 기록해 놓는다. - 시작 하품주의 : 이 글은 Angular 의 전반적인 것도 다루므로 완전 처음 시작하는 분들 혹은 알긴 아는데 확신을 가지고 싶은분들에게 적당하며, 반면 아주 잘 아는 개발자라면 지루한 글일 수도 있으니 본인들이 찾고자 하는 부분만을 띄엄띄엄 참조하길 바라겠다. 참고사항 : 이 문서는 맥에서 작업을 기준으로 작성됨을 알려 드린다. 또한, 시작을 맥에서 터미널을 열고..
앵귤러를 이용하여 Ajax 서버를 구현하려면 쉽게 되질 않는다. 오해스럽지만 불가능하다. 앵귤러는 클라이언트 자바스크립트 기반의 프래임워크이기 때문에 당연하다. 따라서 Angular 에 NodeJS 를 함께하여 Ajax 서버쪽을 NodeJS 로 구현하는 방법이 유리하다. 물론 Ajax 서버 쪽을 다른 HTTP 서버를 이용하여 만들어도 되지만 AngularJS 를 기본으로 구성하는 차원에서는 그것도 쉽지 않은 결정이 될 것이다. 이제 AngularJS 와 NodeJS 를 어떻게 구성하면 되는지 설명한다. 우선, AngularJS 에 다음 내용의 파일을 생성한다. 그냥 본인의 Angular 프로젝트 폴더에 생성하면 된다. 파일명 : proxy.config.json { "/api/*": { "target":"..
출처 : https://codehandbook.org/post-data-from-angular-to-node-rest-api/ When you get started with Angular web application development, one of the common scenarios encountered is how to pass data from Angular to REST API. In this tutorial, you’ll learn how to post data from Angular to Node REST API. Source code from this tutorial is available on GitHub. Creating An Angular App From Scratch Assumin..
nodejs 설치npm install -g yonpm install -g bowernpm install -g grunt-clinpm install -g generator-angular 제너레이터http://yeoman.io/generators/official.htmlhttp://yeoman.io/generators/community.html todo 샘플https://github.com/AngularJS-SPA-Development/chapter01-todo