npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jlearn-srs

v1.0.0

Published

Spaced Repetition System (SRS) library for React Native applications

Downloads

64

Readme

JLearn SRS Implementation

A flexible and configurable Spaced Repetition System (SRS) implementation for language learning applications. This implementation focuses on managing card sets, study sessions, and learning progress with configurable review schedules.

Core Features

  • Dynamic card set management with daily resets
  • Configurable new cards and review limits
  • Automatic set refresh on app interaction
  • Smart card progression based on user performance
  • Flexible storage adapter interface
  • Event-driven architecture for tracking learning progress

Installation

npm install jlearn-srs
# or
yarn add jlearn-srs

Quick Start

import { createSRSManager } from 'jlearn-srs';

// Create an SRS manager instance with default configuration
const srsManager = createSRSManager({
  maxNewCardsPerDay: 5,
  maxReviewsPerDay: 20,
  timeForRestart: "04:00",
  earlyReviewMinutes: 30
});

// Initialize with a deck
await srsManager.initializeDeck("deck-123", "user-456");

// Get current study set
const currentSet = await srsManager.refreshCurrentSet();

Core Concepts

Current Set Management

The system maintains a single active set of cards per user-activated deck. This set is dynamically managed based on several factors:

  1. Daily Reset:

    • Sets reset at the configured time (default: 4 AM)
    • Resets trigger new card availability based on previous day's progress
    • Incomplete cards from previous day are prioritized
  2. New Cards Introduction:

    • Controlled by maxNewCardsPerDay setting
    • Progressive introduction based on completion rate
    • Learning order respected when introducing new cards

Example of daily progression:

// Day 1: User has maxNewCardsPerDay = 5
// Completes 3/5 cards

// Day 2: System will provide
// - 2 remaining cards from previous day
// - 3 new cards (to maintain maxNewCardsPerDay = 5)

Configuration

interface SetManagerConfig {
  maxNewCardsPerDay: number;    // Maximum new cards per day
  maxReviewsPerDay: number;     // Maximum review cards per day
  timeForRestart: string;       // Daily reset time (24h format)
  earlyReviewMinutes: number;   // Early review window
}

Example configuration:

const config = {
  maxNewCardsPerDay: 10,
  maxReviewsPerDay: 100,
  timeForRestart: "04:00",
  earlyReviewMinutes: 30
};

const srsManager = createSRSManager(config);

Dynamic Set Adjustment

The system automatically adjusts the current set when configuration changes:

// Update configuration
await srsManager.updateConfig({
  ...config,
  maxNewCardsPerDay: 7
});

// Current set automatically adjusts:
// - If increasing: Adds new cards up to new limit
// - If decreasing: Removes cards by highest learning order

Advanced Usage

Custom Storage Adapter

Implement the StorageInterface for custom storage solutions:

class CustomStorage implements StorageInterface {
  async getItem(key: string): Promise<string | null> {
    // Custom implementation
  }
  
  async setItem(key: string, value: string): Promise<void> {
    // Custom implementation
  }
  
  async removeItem(key: string): Promise<void> {
    // Custom implementation
  }
}

const srsManager = createSRSManager(config, new CustomStorage());

Event Handling

Monitor SRS events for analytics or user feedback:

import { SRSEventType } from 'jlearn-srs';

srsManager.on(SRSEventType.CARD_REVIEWED, (event) => {
  console.log('Card reviewed:', event.payload);
});

srsManager.on(SRSEventType.DAILY_RESET, (event) => {
  console.log('Daily reset occurred:', event.payload);
});

Future Improvements

  1. Real-time Sync

    • Implement real-time synchronization between devices
    • Handle offline study sessions
  2. Advanced Analytics

    • Track learning patterns
    • Provide insights into study efficiency
    • Generate progress reports
  3. Smart Scheduling

    • Machine learning-based interval adjustments
    • Personalized difficulty scaling
    • Time-of-day optimization
  4. Additional Features

    • Multiple deck support
    • Custom review schedules
    • Priority cards
    • Review filters

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

MIT