
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@smartthings/file-context-store
Advanced tools
Stores SmartApp configuration and auth tokens for use in app-initiated calls
Used by the SmartApp SDK to store IDs and access tokens for an installed instance of a SmartApp and retrieves that information for use in asynchronous API calls. The use of a context store is only needed when SmartApps have to call the SmartThings API in response to external events. SmartApps that only response to lifecycle events from the SmartThings platform will automatically have the proper context without the app having to store it.
The context stored by this module consists of the following data elements:
npm install @smartthings/file-context-store
Create a FileContextStore object and pass it to the SmartApp connector to store the context files in
directory on the local machine.
smartapp.contextStore(new FileContextStore())
The default storage is in a directory named data in the project location.
To locate the directory elsewhere specify the path to the directory to the
constructor.
smartapp.contextStore(new FileContextStore('/opt/data/smartapp'))
Each installedApp instance context record is stored as a JSON string in a file with the name
<installedAppId>.json in the data directory. For example:
{
"installedAppId": "b643d57e-e2eb-40e4-b2ef-ff43519941cc",
"locationId": "8ea7ab21-932d-4256-80c6-abc53932dd3a",
"authToken": "f4b3b75c-091f-4b31-9833-7b52fe875ffb",
"refreshToken": "e980829a-9763-4105-b986-2d94114b1e80",
"clientId": "12475d16-ec68-490a-a708-6d390c112c7c",
"clientSecret": "2888d8f4-88b6-4741-a98e-54a267e6373b",
"config": {
"scenes": [
{
"valueType": "STRING",
"stringConfig": {
"value": "true"
}
}
],
"switches": [
{
"valueType": "STRING",
"stringConfig": {
"value": "true"
}
}
],
"locks": [
{
"valueType": "STRING",
"stringConfig": {
"value": "true"
}
}
]
}
}
State storage is a name-value store for the installed app instance. This is useful for storing information
between invocations of the SmartApp. Each state property is stored in a separate file with the name
<installedAppId>/<stateName>.json in the data directory. For example a numeric state property named
count with a value of 5 would be stored in a file named b643d57e-e2eb-40e4-b2ef-ff43519941cc/count.json:
5
This data store is intended for development testing use only, not in a production environment where scalability and redundancy is of primary concern.
FAQs
Stores SmartApp configuration and auth tokens for use in app-initiated calls
We found that @smartthings/file-context-store demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.