OFFLINE & STORAGE [스토리지] web-storage-demo-gh-pages 로컬 스토리지를 이용한 예제 web-storage-demo A simple demo to show usage of the Web Storage API. For more detail on how it works, read Using the Web Storage API. View the demo online: http://mdn.github.io/web-storage-demo/ A simple demo to show usage of the Web Storage API. For more detail on how it works, read https://developer.mozilla.org/en-US/docs/Web/A..
네이티브앱을 만들기만 하던 시대를 지나 이젠 웹으로 앱을 만드는게 보편화 되어버린 시대로 도달했다. 하이브리드앱은 이미 많은 검증을 거쳤고, 상용화되서 시장을 점유하고 있는것이 사실이다. 대표적인 앱제작플롯폼으로 "폰갭(http://phonegap.com/)"을 들 수 있다. 폰갭,앱스프레소, 티타늄들 많이 있지만, 폰갭이 가장 간단하고 사용하기 좋은거 같다. 자바스크립트를 이용한 처리가 작년만 해도 느렸지만, 하드웨어 성능도 향상되고, 자바스크립트 엔진 성능도 향상되어 지금은 네이티브 API를 사용하는것을 거의 따라잡았다고 볼 수 있다. 오프라인에서는 HTML5 캐시 또는 Web Storage 기능등이 있기때문에 온라인이 아니더라도 일반적인 정보를 보여줄 수 있게되었다. (Web Storage, Web..
Having fun with HTML5 — Local Storage and Session Storage API The full API specification for the localStorage and sessionStorage objects can be found here. At the time of writing, this is how the common Storage interface look: Demo I’ve put together a quick demo here to illustrate how to detect and use the local and session storage to get, set, remove and clear stored items (well..