feathers-solr
![Dependency Status](https://david-dm.org/sajov/feathers-solr.svg)
Solr Adapter for Feathersjs
Installation
npm install feathers-solr --save
Documentation
Please refer to the feathers-solr documentation for more details.
Complete Example
Here's an example of a Feathers server that uses feathers-solr
.
const feathers = require('feathers');
const rest = require('feathers-rest');
const hooks = require('feathers-hooks');
const bodyParser = require('body-parser');
const errorHandler = require('feathers-errors/handler');
const plugin = require('feathers-solr');
const app = feathers()
.configure(rest())
.configure(hooks())
.use(bodyParser.json())
.use(bodyParser.urlencoded({ extended: true }))
.use('/plugin', plugin())
.use(errorHandler());
app.listen(3030);
console.log('Feathers app started on 127.0.0.1:3030');
Changelog
0.1.0
License
Copyright (c) 2015
Licensed under the MIT license.