It is service for storage all properties. Service give access to properties with rest api.
/get
api for get property
{
"key": ...(string value) - it is name of property
}
{
"status": true,
"value": ... - value in property
}
/set
api for srore property
{
"key": ...(string value) - it is name of property
"value": - it is value of property
}
{
"status": true,
}
- Clone repositories
git clone https://github.com/kudryaA/Storage-for-propertie
- Open folder
cd Storage-for-properties
- Install dependencies
npm install
- Run server
npm start