Front-End34 Deep Link, Universal Links, App Link Deep Link Deep Link는 웹에서 특정 링크를 실행하면 사용자를 앱의 특정 페이지로 이동하게 하는 기능을 합니다. 앱이 설치 되지 않았다면 앱을 설치하도록 스토어로 이동시킵니다. PC에서는 해당하는 웹 페이지가 있다면 그 페이지로 이동시킵니다. Universal Links Universal Links는 Apple 에서 제안하는 스펙으로 iOS 진영에서 사용합니다. https://developer.apple.com/ios/universal-links/ Universal Links - Apple Developer Universal Links for Developers Seamlessly link to content in your app or on your website. With universal.. 2022. 10. 6. JSON.stringify()에서 변환되지 않는 것들 JSON.stringify(), JSON.parse() 두 JSON 메서드는 JSON을 사용하는 웹 개발자 및 자바스크립트 개발자에게 이동수단과 같은 존재가 아닐까 한다. 안 쓸 수 없는 존재랄까. JSON.stringify() 와 parse()를 사용하는 중에, Image를 담는 데이터가 {} 로 오는 것을 발견했다. 생각해보니 이미지는 이진 데이터인데 이걸 이진으로 표현하기에는 어려움이 있겠구나 싶었다. 그래서 변환되지 않는 것을 더 찾아보니 아래와 같았다. # 자동으로 처리 되지 않는 것들 UnSupported type pass directly array object undefined undefined 'null' omitted symbol undefined 'null' omitted functio.. 2022. 9. 22. Web API : Clipboard API React에서 객체 복사 기능을 Duplicate로 구현을 했는데 Ctrl + C, Ctrl + V 기능을 구현해달라는 요청이 있어 Web API인 Clipboard API를 접하게 되었다. 마침 MDN 에 클립보드에 대해 설명한 게 있길래 가져와본다 더보기 The clipboard is a data buffer that is used for short-term, data storage and/or data transfers, that can be accessed from most or all programs within the environment. 1. 클립보드 접근방법 navigator.clipboard.readText().then( (clipText) => document.querySelector.. 2022. 9. 22. Docker에 대해서 1. 도커란 무엇인가? Docker is the Industry-Leading Container Runtime. Node.js가 javascript Runtime인 것처럼 Docker는 Container Runtime이다. 2. 그럼 Container는 무엇인가? A container is a standard unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another 컨테이너는 software의 unit 이다. 3. Container Image란 무엇인가? A Docker container ima.. 2022. 9. 21. 이전 1 ··· 4 5 6 7 8 9 다음