JSPM

@rainmenxia/sqlite-web-client

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q21017F
  • License MIT

A web-based SQLite database client

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@rainmenxia/sqlite-web-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    SQLite Web Client

    A web-based SQLite database client that allows you to manage your SQLite databases through a web interface.

    Features

    • Web-based interface for SQLite database management
    • Support for executing SQL queries
    • Import data from CSV and Excel files
    • Export query results
    • Simple and intuitive user interface

    Installation

    npm install @rainmenxia/sqlite-web-client

    Usage

    const { startServer } = require('@rainmenxia/sqlite-web-client');
    
    // Start the server with default settings
    startServer(3000, 'path/to/your/database.db');
    
    // The web interface will be available at http://localhost:3000

    API

    startServer(port, dbPath)

    Starts the SQLite Web Client server.

    • port (number): The port number to run the server on (default: 3000)
    • dbPath (string): Path to the SQLite database file

    Development

    # Clone the repository
    git clone https://github.com/Rainmen-xia/sqlite-web-client.git
    
    # Install dependencies
    cd sqlite-web-client
    npm install
    
    # Start development server
    npm run dev

    License

    MIT

    Author

    rainmenxia