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

@stanlemon/react-couchdb-authentication

v0.8.125

Published

React component for authenticating against a CouchDB user db and syncing it locally with PouchDB.

Downloads

333

Readme

React CouchDB Authentication Component

npm version

React component for streamlining user authentication against an Apache CouchDB instance. If you're building a React application and want to let the amazing CouchDB be your backend, you can take advantage of CouchDB's userdb feature, and with this component streamline using CouchDB to sign up and login users to a secure application. Each user's database is replicated locally to a PouchDB instance that you can use to wrok with documents.

Getting Started

First add the component to your application. You should also have React and PouchDB installed.

npm install --save @stanlemon/react-couchdb-authentication pouchdb react

You will need an instance of CouchDB. If you don't have one, the CouchDB install docs will take care of you. In your CouchDB config you will need to enable couch_user.enable and couch_user.delete_dbs. You can do this through Fauxton, CouchDB's excellent UI or with the following commands:

curl -X PUT localhost:5984/_node/_local/_config/couch_peruser/enable -d "\"true\""
curl -X PUT localhost:5984/_node/_local/_config/couch_peruser/delete_dbs -d "\"true\""

Enabling these settings ensures that once a user signs up, their dedicated database is setup (and vice versa when their user is deleted).

You will also need to ensure that the _user database is created and can be written to by any user. Note that the security of this database changed in CouchDB 3, so it's not open by default anymore.

It is highly recommended that you setup a proxy to your couchdb instance so that your webapp and the instance can be accessed through the same domain. That is how the example app works.

Example

The <Authentication/> component is easy to use, simply wrap your <App /> and use the provided <Login /> and <SignUp /> components to get going. You can customize your login and signup views later.

<Authentication
  url="http://localhost:5984"
  login={<Login />}
  signup={<SignUp />}
>
  <h1>Authenticated!</h1>
</Authentication>

Want an easier way to see this in action? Clone the repository, and checkout the example folder. You can run npm start inside of it and see a fully functioning implementation of the components.

The <Login /> and <SignUp /> components are actually containers that provide some simple setters that are supplied to a view via the component property, which you can customize to look appropriate for your application.

Troubleshooting

Most issues are due to CouchDB being misconfigured, or cookies already being set. If you've pulled up Fauxton in your browser you will want to clear the cookies for your CouchDB instance before using this component.

Debug

This component has a fair amount of logging that can give you better insight into it's behavior. To see that logging you can set debug={true} on the <Authentication/> component and everything will be logged out to the console. Do not do this in production!

Building & Tooling

To get started, you can build the components using Typescript by simply doing:

  npm install
  npm run build

You can lint the source by doing:

  npm run lint

You can run tests by doing:

  npm test

Tests require a working CouchDB instance.