Giter Site home page Giter Site logo

flexsearch-server's People

Contributors

ts-thomas avatar

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

flexsearch-server's Issues

fs.exists(path, callback) Deprecated

The read_from_file function in helper.js uses a deprecated fs.exists() method before attempting to readFile().

Might be better do something like...

read_from_file: () => {
    fs.open(filename, 'r', (err, fd) => {
        if (err) {
            if (err.code === 'ENOENT') {
                console.error(filename + 'does not exist')
                return
            }
        }
        throw err
    }
    fs.readFile(fd) ...
}

Any plans to support multiple indexes?

Hello. Is there any plans to support multiple indexes? This could be handy for searching multiple different types of documents with different settings, for example, users and logs.

Unable to use HTTPS locally

Firstly — great work. Thanks for building this.

I'm attempting to run flexsearch-server locally using HTTPS.

I've created certificates, following the instructions at letsencrypt.org/docs/certificates-for-localhost.

I've renamed the files from localhost.crt to development.crt and from localhost.key to development.pem and copied them to both /cert:

/cert/development.crt
/cert/development.pem

and /certs:

/certs/development.crt
/certs/development.pem

(The console message refers to /certs and the documentation refers to /cert.)

However, I continue to get the following error when running npm run development:

Could not find certificates located at: /certs. Therefore HTTPS server can't initialize.

Any ideas? FlexSearch Server runs fine from localhost over HTTP.

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.