Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
A simple user management library for Node.js.
This library is a wrapper for the Stormpath REST API. It is a collection of methods that allow you to create, modify, and update resources in the REST API, without having to manually make HTTP calls from your own code.
Stormpath is a User Management API that reduces development time with instant- on, scalable user infrastructure. Stormpath's intuitive API and expert support make it easy for developers to authenticate, manage and secure users and roles in any application.
This library provides low-level access to all of Stormpath's features, to name a few:
Because this library gives you basic low-level access to the REST API only, it may not always be the best choice for the problem that you are trying to solve. If you want to work with a more comprehensive framework integration, please see the other libraries that are listed below.
This library is fully documented with JsDoc, please visit the site here: Stormpath Node.js SDK Documentation
npm install stormpath
Everything starts with a Client instance, which you create like so:
// Assumes API keys are in environment variables, or stormpath.yaml
var stormpath = require('stormpath');
var client = new stormpath.Client();
With a Client instance, you can do many operations, like fetching all of the accounts in your Stormpath Tenant:
// Fetch all the accounts in my Stormpath Tenant
client.getAccounts(function(err, accountsCollection) {
accountsCollection.each(function(account, next) {
console.log(account);
next();
});
});
This library is a low-level wrapper for the Stormpath REST API. We also provide high-level libraries for popular frameworks, these libraries provide default views for login and registration, as well as many other features for adding authentication and authorization to your full-stack web or mobile application.
Express-Stormpath - A deep integration with Express that will add default view for authentication, and provide a JSON API for front-end and mobile clients to use for authentication.
Stormpath Angular SDK - This library provides default login and registration views in your Angular application, and communicates with Express-Stormpath via its JSON API to authenticate the user, and tell Angular about the logged-in user. This library can be used with other back-end frameworks, for more integrations see https://docs.stormpath.com
Stormpath React SDK - This library provides routes and components for React that will allow you to solve common user management tasks using Stormpath, such as login and signup. It communicates with Express-Stormpath via its JSON API to authenticate the user and provide user context to your React application. This library can be used with other back-end frameworks, for more integrations see https://docs.stormpath.com
These guides will walk you through the creation of a full-stack JavaScript application that uses Node.js:
We're here to help if you get stuck. There are several ways that you an get in touch with a member of our team:
Copyright © 2015 Stormpath, Inc. and contributors.
This project is open-source via the Apache 2.0 License.
0.20.1
Released February 3, 2017
crypto
library to avoid deprecated use of pbkdf2
.FAQs
Official Stormpath SDK for Node.js
The npm package stormpath receives a total of 0 weekly downloads. As such, stormpath popularity was classified as not popular.
We found that stormpath demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.