웹 및 Node.js 애플리케이션에서 데이터 저장소를 관리하는 것은 때로 번거롭게 느껴질 수 있으며, 특히 localStorage 또는 sessionStorage를 다룰 때 더욱 그렇습니다. 직관적인 API로 저장 작업을 간소화하는 다목적 2KB gzip 저장 유틸리티인 Kando를 만나보세요.
작은 웹 앱에서 작업하든 복잡한 Node.js 프로젝트에서 작업하든 Kando의 유연성과 개발자 친화적인 디자인은 여러분의 삶을 더 쉽게 만들어 줄 수 있습니다. 왜 시도해 볼 가치가 있는지 알아보겠습니다!
Kando는 가벼운 패키지에 강력한 기능을 제공합니다.
npm으로 Kando를 설치하세요.
npm install kando-storage
스크립트 태그를 사용하여 프로젝트에 Kando를 추가하세요.
<script src="path/to/kando.js"></script>
다음은 시작하는 데 도움이 되는 몇 가지 예입니다. GitHub 저장소에서 더 많은 고급 사용법을 확인할 수 있습니다.
데이터 설정 및 검색
const kando = require('kando-storage'); // Store a single value kando('local.app.theme', 'dark'); // Retrieve the value console.log(kando('local.app.theme')); // Output: 'dark' // Store an object kando('local.user.profile', { name: 'Alice', age: 30 }); // Retrieve the object console.log(kando('local.user.profile')); // Output: { name: 'Alice', age: 30 }
// Remove a specific property kando('local.user.profile.name', null); // Clear an entire namespace kando('local.user', null);
// Store session data with a 60-second expiration kando('session.tempData', 'Temporary', 60); // Access it before it expires console.log(kando('session.tempData')); // Output: 'Temporary' // After 60 seconds, it will automatically expire
이러한 예는 Kando가 할 수 있는 작업의 표면적인 부분일 뿐입니다. GitHub에서 다음 내용에 대한 전체 README를 확인하세요.
Kando는 브라우저와 Node.js 전반에서 스토리지를 원활하게 관리할 수 있는 간단하면서도 강력한 도구입니다. 작은 크기, 풍부한 기능, 사용 용이성으로 인해 개발자가 꼭 사용해 봐야 할 제품입니다.
스토리지를 단순화할 준비가 되셨나요? 지금 GitHub를 시작해보세요! ?
위 내용은 당신에게 필요한지 몰랐던 경량 스토리지 유틸리티 Kando를 만나보세요의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!