Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@incodelang/accounts
Advanced tools
A simple account management server for your node.js application.
Install @incodelang/accounts with npm
npm install @incodelang/accounts
Install @incodelang/accounts with yarn
yarn add @incodelang/accounts
Integrate in your own express.js application
const { accountServer } = require('@incodelang/accounts')
const express = require('express')
const app = express();
app.listen(3000, "0.0.0.0");
accountServer({
app: app
})
Standalone express.js application
const { accountServer, sampleApp } = require('@incodelang/accounts')
accountServer({
app: sampleApp(
3000, // port [default] = 3000
"0.0.0.0" // host [default] = "0.0.0.0"
)
})
The parameters must be send in the request body as JSON format.
Response | Description |
---|---|
{"error": false, "message": "response message, e.g. data"} | The request was successful |
{"error": true, "message": "errror message"} | The request failed |
POST /api/v1/user/users/create
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
POST /api/v1/user/users/delete
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
POST /api/v1/user/users/login
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user (or a token) |
POST /api/v1/user/users/exists
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
POST /api/v1/user/users/update/username
Parameter | Type | Description |
---|---|---|
old | string | The current name of the user |
username | string | The new name of the user |
password | string | The password of the user |
POST /api/v1/user/users/update/password
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The new password of the user |
old | string | The current password of the user |
POST /api/v1/user/users/data/store
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
data | string | The actual data |
dataName | string | The name of the data |
POST /api/v1/user/users/data/delete
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
dataName | string | The name of the data |
POST /api/v1/user/users/data
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
dataName | string | The name of the data |
POST /api/v1/user/users/data/delete
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
POST /api/v1/user/data/set
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
value | string | The actual data |
key | string | The name of the data |
POST /api/v1/user/data/delete
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
key | string | The name of the data |
POST /api/v1/user/data/allow
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
key | string | The name of the data |
newUser | string | The name of the new user |
POST /api/v1/user/data/disallow
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
key | string | The name of the data |
newUser | string | The name of the new user |
POST /api/v1/user/data/get
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
key | string | The name of the data |
POST /api/v1/user/postboxes/create
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
name | string | The name of the postbox |
POST /api/v1/user/postboxes/delete
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
name | string | The name of the postbox |
POST /api/v1/user/postboxes/add
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
name | string | The name of the postbox |
owner | string | The owner of the postbox |
entry | string or object | The data you want to add |
POST /api/v1/user/postboxes/clear
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
name | string | The name of the postbox |
POST /api/v1/user/postboxes/read
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
name | string | The name of the postbox |
POST /api/v1/user/postboxes/exists
Parameter | Type | Description |
---|---|---|
owner | string | The owner of the postbox |
name | string | The name of the postbox |
POST /api/v1/user/tokens/create
Parameter | Type | Description |
---|---|---|
username | string | The name of the user |
password | string | The password of the user |
FAQs
An API for simple Account Management
The npm package @incodelang/accounts receives a total of 0 weekly downloads. As such, @incodelang/accounts popularity was classified as not popular.
We found that @incodelang/accounts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.