GithubHelp home page GithubHelp logo

rse / tika-server Goto Github PK

View Code? Open in Web Editor NEW
18.0 4.0 5.0 77 KB

Apache Tika Server as a Background Service in Node.js

Home Page: http://npmjs.com/tika-server

JavaScript 100.00%
apache tika server background process service

tika-server's Introduction

Tika-Server

Apache Tika Server as a Background Service in Node.js

About

This is a small JavaScript library for use in Node.js environments, providing the possibility to run Apache Tika Server as a local background service and query it through a frontend JavaScript API.

NOTICE

The Apache Tika Server is written in Java and hence this Node.js modules requires an installed java executable in the environment.

Installation

$ npm install tika-server

Usage

const TikaServer = require("tika-server")

;(async () => {
    const ts = new TikaServer()
    ts.on("debug", (msg) => {
        console.log(`DEBUG: ${msg}`)
    })
    await ts.start()
    await ts.queryText("foo").then((data) => {
        console.log(data)
    })
    await ts.stop()
})().catch((err) => {
    console.log(`ERROR: ${err}`)
})

Application Programming Interface

declare class TikaServer {
    constructor(options?: {
        javaBinary?: string   /* default: "java" */
        javaOptions?: string  /* default: "-server -Xms1G -Xmx1G" */
        tikaBinary?: string   /* default: "${__dirname}/tika-server-cli.jar" */
        tikaConfig?: string   /* default: "${__dirname}/tika-server-cli.xml" */
        tikaOptions?: string  /* default: "--log info" */
        tikaHost?: string     /* default: "127.0.0.1" */
        tikaPortMin?: number  /* default: 41000 */
        tikaPortMax?: number  /* default: 42000 */
    })

    public on(
        event: string,
        callback: (event: any) => void
    ): void

    public start(
    ): Promise<void>

    public query(
        content: any,
        options?: {
            endpoint?: string  /* default: "tika" */
            type?: string      /* default: "application/octet-stream" */
            accept?: string    /* default: "text/xml" */
            response?: string  /* default: "blob" */
            filename?: string  /* default: "" */
        }
    ): Promise<any>

    public queryMeta(
        content: any,
        options?: {
            type?: string      /* default: "application/octet-stream" */
            filename?: string  /* default: "" */
        }
    ): Promise<object>

    public queryText(
        content: any,
        options?: {
            type?: string      /* default: "application/octet-stream" */
            filename?: string  /* default: "" */
        }
    ): Promise<string>

    public stop(
    ): Promise<void>
}

Motivation

The major differences of tika-server to similar NPM modules and the motivation for the existence of tika-server are:

  1. tika-server, in contrast to the tika module, does not depend on the native java module. Instead, it just requires the java executable to be available.

  2. tika-server, in contrast to the tika module, does not spawn Apache Tika for every query. Instead, it uses a continuously running Apache Tika Server in a background process.

  3. tika-server, in contrast to the tika module, does not ship with an old Tika JAR. Instead, it automatically downloads and uses a more recent one.

  4. tika-server, in contrast to the tika-server-client module, does not need a pre-installed Apache Tika Server. Instead, it automatically starts and stops a local instance of it in the background.

  5. tika-server, in contrast to the tika-text-extract module, does not use the hard-coded (default) TCP/IP port 9998 for the background Apache Tika Server process. Instead, it automatically determines and uses a free TCP/IP port on localhost.

License

Copyright © 2018-2024 Dr. Ralf S. Engelschall (http://engelschall.com/)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

tika-server's People

Contributors

pierrecavalet avatar rogerso avatar rse avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

tika-server's Issues

axios old version vulnerability

npm audit report

axios <=0.21.1
Severity: high
Incorrect Comparison in axios - GHSA-cph5-m8f7-6c5x
No fix available
node_modules/axios
tika-server *
Depends on vulnerable versions of axios
node_modules/tika-server

2 high severity vulnerabilities

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.