{"id":22859938,"url":"https://github.com/reelyactive/chickadee","last_synced_at":"2025-04-30T17:46:22.643Z","repository":{"id":26950099,"uuid":"30413039","full_name":"reelyactive/chickadee","owner":"reelyactive","description":"Contextual associations store and API for the IoT.  We believe in an open Internet of Things.","archived":false,"fork":false,"pushed_at":"2025-03-13T15:11:00.000Z","size":2397,"stargazers_count":7,"open_issues_count":1,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-17T01:57:09.719Z","etag":null,"topics":["api","associations","bluetooth-low-energy","contextual-data","dynamb","iot","node-js","pareto-anywhere","rtls"],"latest_commit_sha":null,"homepage":"https://www.reelyactive.com/pareto/anywhere/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reelyactive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-02-06T13:19:39.000Z","updated_at":"2025-03-13T15:12:27.000Z","dependencies_parsed_at":"2024-01-23T02:37:08.675Z","dependency_job_id":"49ead014-298a-4a5b-b58d-dc3cde5fbfbf","html_url":"https://github.com/reelyactive/chickadee","commit_stats":{"total_commits":339,"total_committers":2,"mean_commits":169.5,"dds":0.008849557522123908,"last_synced_commit":"2d5e1868ec28c2beca515fc91dfc3bb1854baf60"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fchickadee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fchickadee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fchickadee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reelyactive%2Fchickadee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reelyactive","download_url":"https://codeload.github.com/reelyactive/chickadee/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251754228,"owners_count":21638478,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","associations","bluetooth-low-energy","contextual-data","dynamb","iot","node-js","pareto-anywhere","rtls"],"created_at":"2024-12-13T09:08:29.513Z","updated_at":"2025-04-30T17:46:22.610Z","avatar_url":"https://github.com/reelyactive.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"chickadee\n=========\n\n__chickadee__ is a contextual associations store and [hyperlocal context](https://www.reelyactive.com/context/) API for [Pareto Anywhere](https://www.reelyactive.com/pareto/anywhere/) open source IoT middleware.\n\n![Overview of chickadee](https://reelyactive.github.io/chickadee/images/overview.png)\n\nSpecifically, __chickadee__ associates wireless device identifiers with metadata such as a URL, a tag, a directory, and/or a position.  Additionally, it provides a contextual API when coupled with live data from a [barnacles](https://github.com/reelyactive/barnacles/) instance and optional [chimps](https://github.com/reelyactive/chimps/) instance.  And finally, it provides an API to store and retrieve GeoJSON features.   __chickadee__ can run standalone, although it is usually run together with its peer modules.\n\n\nInstallation\n------------\n\n    npm install chickadee\n\n\nHello chickadee!\n----------------\n\n    npm start\n\nBrowse to [localhost:3001/associations/001bc50940810000/1](http://localhost:3001/associations/001bc50940810000/1) to see if there are any associations for the device with EUI-64 identifier 00-1b-c5-09-40-81-00-00.  By default, this should return Not Found.  Interact with __chickadee__ through the REST API described below.\n\n\nREST API\n--------\n\n__chickadee__'s REST API includes the following three base routes:\n- /associations _for retrieving/specifying metadata associations with devices_\n- /context _for retrieving the context of specific devices_\n- /features _for retrieving/specifying GeoJSON features_\n\n\n### GET /associations[?]\n\nRetrieve all associations, with optional query string.\n\n#### Example request\n\n| Method | Route         | Content-Type     |\n|:-------|:--------------|:-----------------|\n| GET    | /associations | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/associations\"\n        }\n      },\n      \"associations\": {\n        \"001bc50940810000/1\": {},\n        \"001bc50940820000/1\": {}\n      }\n    }\n\nBy default, each association will be returned as an empty object.  To include one or more association properties, use a query string as specified below.\n\n#### Query strings\n\nThe following query string parameters are supported:\n- tag _to filter on a specific tag_\n- directory _to filter on a specific directory_\n- include _to include a specific property in each returned association_\n\nFor example GET /associations?tag=animal\u0026include=url would return all associations with \"animal\" among their tags, and include _only_ the url property, if any, of each association.\n\nIt is possible to search on multiple tag, directory and include parameters, for instance GET /associations?tag=new\u0026tag=improved would return all associations with either \"new\", \"improved\", or both, among their tags.\n\nThe directory parameter is hierarchical.  For instance GET /associations?directory=parc would return associations with directory \"parc\", \"parc:office\", \"parc:lounge\", and so on.\n\n\n### GET /associations/{id}/{type}\n\nRetrieve the associations for the given device _id_ and _type_.\n\n#### Example request\n\n| Method | Route                            | Content-Type     |\n|:-------|:---------------------------------|:-----------------|\n| GET    | /associations/001bc50940810000/1 | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/associations/001bc50940810000/1\"\n        }\n      },\n      \"associations\": {\n        \"001bc50940810000/1\": {\n          \"url\": \"https://www.reelyactive.com\",\n          \"directory\": \"parc:office\",\n          \"tags\": [ \"new\", \"improved\" ],\n          \"position\": [ 0.0, 0.0 ]\n        }\n      }\n    }\n\n#### Single-property routes\n\nThe following routes are also supported:\n- GET /associations/{id}/{type}/url\n- GET /associations/{id}/{type}/directory\n- GET /associations/{id}/{type}/tags\n- GET /associations/{id}/{type}/position\n\nIn each case, the response is as above, but includes only the property specified by the route.\n\n\n### PUT /associations/{id}/{type}\n\nReplace, or create, the associations for the given device _id_ and _type_.\n\n#### Example request\n\n| Method | Route                            | Content-Type     |\n|:-------|:---------------------------------|:-----------------|\n| PUT    | /associations/001bc50940810000/1 | application/json |\n\n    {\n      \"url\": \"https://www.reelyactive.com\",\n      \"directory\": \"parc:office\",\n      \"tags\": [ \"new\", \"improved\" ],\n      \"position\": [ 0.0, 0.0 ]\n    }\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/associations/001bc50940810000/1\"\n        }\n      },\n      \"associations\": {\n        \"001bc50940810000/1\": {\n          \"url\": \"https://www.reelyactive.com\",\n          \"directory\": \"parc:office\",\n          \"tags\": [ \"new\", \"improved\" ],\n          \"position\": [ 0.0, 0.0 ]\n        }\n      }\n    }\n\n#### Single-property routes\n\nThe following routes are also supported:\n- PUT /associations/{id}/{type}/url\n- PUT /associations/{id}/{type}/directory\n- PUT /associations/{id}/{type}/tags\n- PUT /associations/{id}/{type}/position\n\nIn each case, the request and response are as above, however only the property specified by the route will be considered in the request.\n\n\n### DELETE /associations/{id}/{type}\n\nRemove the associations for the given device _id_ and _type_.\n\n#### Example request\n\n| Method | Route                            | Content-Type     |\n|:-------|:---------------------------------|:-----------------|\n| DELETE | /associations/001bc50940810000/1 | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/associations/001bc50940810000/1\"\n        }\n      }\n\n#### Single-property routes\n\nThe following routes are also supported:\n- DELETE /associations/{id}/{type}/url\n- DELETE /associations/{id}/{type}/directory\n- DELETE /associations/{id}/{type}/tags\n- DELETE /associations/{id}/{type}/position\n\nIn each case, the response is as above.\n\n\n### GET /context[?]\n\nRetrieve the context of all active devices, with optional query string.\n\n#### Example request\n\n| Method | Route    | Content-Type     |\n|:-------|:---------|:-----------------|\n| GET    | /context | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/context\"\n        }\n      },\n      \"devices\": {\n        \"fee150bada55/2\": {\n          \"nearest\": [\n            {\n              \"device\": \"001bc50940810000/1\",\n              \"rssi\": -72\n            },\n            {\n              \"device\": \"001bc50940820000/1\",\n              \"rssi\": -85\n            }\n          ],\n          \"dynamb\": {\n            \"timestamp\": 1624714123456,\n            \"batteryPercentage\": 67,\n            \"acceleration\": [ -0.15625, -0.94921875, 0.109375 ]\n          },\n          \"spatem\": {\n            \"timestamp\": 1624714123456,\n            \"type\": \"position\",\n            \"data\": {\n              \"type\": \"FeatureCollection\",\n              \"features\": [\n                {\n                  \"type\": \"Feature\",\n                  \"properties\": {\n                    \"isDevicePosition\": true,\n                    \"positioningEngine\": \"External\"\n                  },\n                  \"geometry\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [ -73.57123, 45.50883 ]\n                  }\n                }\n              ]\n            }\n          },\n          \"statid\": {\n            \"uuids\": [ \"feaa\" ],\n            \"uri\": \"https://sniffypedia.org/Product/Google_Eddystone/\",\n            \"deviceIds\": [ \"7265656c652055554944/000000000d09\" ]\n          },\n          \"url\": \"https://www.reelyactive.com/team/obelix/\",\n          \"tags\": [ \"animal\" ]\n        },\n        \"001bc50940810000/1\": {\n          \"directory\": \"parc:office\",\n          \"tags\": [ \"reelceiver\" ]\n        },\n        \"001bc50940820000/1\": {\n          \"directory\": \"parc:lounge\",\n          \"tags\": [ \"OiO\" ]\n        }\n      }\n    }\n\n#### Query strings\n\nThe following query string parameter is supported:\n- include _to include only a specific property in each returned device_\n\nFor example GET /context?include=dynamb would return all devices, and include _only_ the dynamb property, if any, of each device.\n\nIt is possible to query on multiple include parameters, for instance GET /context?include=nearest\u0026include=directory would include either, or both, the nearest and directory properties, of each device.\n\n\n### GET /context/device/{id}/{type}[?]\n\nRetrieve the context of the active device with the given _id_ and _type_, with optional query string.\n\n#### Example request\n\n| Method | Route                          | Content-Type     |\n|:-------|:-------------------------------|:-----------------|\n| GET    | /context/device/fee150bada55/2 | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/context/device/fee150bada55/2\"\n        }\n      },\n      \"devices\": {\n        \"fee150bada55/2\": {\n          \"nearest\": [\n            {\n              \"device\": \"001bc50940810000/1\",\n              \"rssi\": -72\n            },\n            {\n              \"device\": \"001bc50940820000/1\",\n              \"rssi\": -85\n            }\n          ],\n          \"dynamb\": {\n            \"timestamp\": 1624714123456,\n            \"batteryPercentage\": 67,\n            \"acceleration\": [ -0.15625, -0.94921875, 0.109375 ]\n          },\n          \"spatem\": {\n            \"timestamp\": 1624714123456,\n            \"type\": \"position\",\n            \"data\": {\n              \"type\": \"FeatureCollection\",\n              \"features\": [\n                {\n                  \"type\": \"Feature\",\n                  \"properties\": {\n                    \"isDevicePosition\": true,\n                    \"positioningEngine\": \"External\"\n                  },\n                  \"geometry\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [ -73.57123, 45.50883 ]\n                  }\n                }\n              ]\n            }\n          },\n          \"statid\": {\n            \"uuids\": [ \"feaa\" ],\n            \"uri\": \"https://sniffypedia.org/Product/Google_Eddystone/\",\n            \"deviceIds\": [ \"7265656c652055554944/000000000d09\" ]\n          },\n          \"url\": \"https://www.reelyactive.com/team/obelix/\",\n          \"tags\": [ \"animal\" ]\n        },\n        \"001bc50940810000/1\": {\n          \"directory\": \"parc:office\",\n          \"tags\": [ \"reelceiver\" ]\n        },\n        \"001bc50940820000/1\": {\n          \"directory\": \"parc:lounge\",\n          \"tags\": [ \"OiO\" ]\n        }\n      }\n    }\n\n#### Query strings\n\nThe following query string parameter is supported:\n- include _to include only a specific property in the returned device_\n\nFor example GET /context/device/fee150bada55/2?include=dynamb would return the specified device, and include _only_ its dynamb property, if any.\n\n\n### GET /context/directory/{directory}[?]\n\nRetrieve the context of all active devices with (and within) the given _directory_, with optional query string.  As directories are hierarchical, specifying the directory _parc_ would include all subdirectories such as _parc:office_ and _parc:lounge_.\n\n#### Example request\n\n| Method | Route                   | Content-Type     |\n|:-------|:------------------------|:-----------------|\n| GET    | /context/directory/parc | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/context/directory/parc\"\n        }\n      },\n      \"devices\": {\n        \"fee150bada55/2\": {\n          \"nearest\": [\n            {\n              \"device\": \"001bc50940810000/1\",\n              \"rssi\": -72\n            },\n            {\n              \"device\": \"001bc50940820000/1\",\n              \"rssi\": -85\n            }\n          ],\n          \"dynamb\": {\n            \"timestamp\": 1624714123456,\n            \"batteryPercentage\": 67,\n            \"acceleration\": [ -0.15625, -0.94921875, 0.109375 ]\n          },\n          \"spatem\": {\n            \"timestamp\": 1624714123456,\n            \"type\": \"position\",\n            \"data\": {\n              \"type\": \"FeatureCollection\",\n              \"features\": [\n                {\n                  \"type\": \"Feature\",\n                  \"properties\": {\n                    \"isDevicePosition\": true,\n                    \"positioningEngine\": \"External\"\n                  },\n                  \"geometry\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [ -73.57123, 45.50883 ]\n                  }\n                }\n              ]\n            }\n          },\n          \"statid\": {\n            \"uuids\": [ \"feaa\" ],\n            \"uri\": \"https://sniffypedia.org/Product/Google_Eddystone/\",\n            \"deviceIds\": [ \"7265656c652055554944/000000000d09\" ]\n          },\n          \"url\": \"https://www.reelyactive.com/team/obelix/\",\n          \"tags\": [ \"animal\" ]\n        },\n        \"001bc50940810000/1\": {\n          \"directory\": \"parc:office\",\n          \"tags\": [ \"reelceiver\" ]\n        },\n        \"001bc50940820000/1\": {\n          \"directory\": \"parc:lounge\",\n          \"tags\": [ \"OiO\" ]\n        }\n      }\n    }\n\n#### Query strings\n\nThe following query string parameter is supported:\n- include _to include only a specific property in each returned device_\n\nFor example GET /context/directory/parc?include=nearest would return all devices with (and within) the parc _directory_, and include _only_ the nearest property, if any, of each device.\n\n\n### GET /context/tag/{tag}[?]\n\nRetrieve the context of all active devices with the given _tag_, with optional query string.\n\n#### Example request\n\n| Method | Route               | Content-Type     |\n|:-------|:--------------------|:-----------------|\n| GET    | /context/tag/animal | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/context/tag/animal\"\n        }\n      },\n      \"devices\": {\n        \"fee150bada55/2\": {\n          \"nearest\": [\n            {\n              \"device\": \"001bc50940810000/1\",\n              \"rssi\": -72\n            },\n            {\n              \"device\": \"001bc50940820000/1\",\n              \"rssi\": -85\n            }\n          ],\n          \"dynamb\": {\n            \"timestamp\": 1624714123456,\n            \"batteryPercentage\": 67,\n            \"acceleration\": [ -0.15625, -0.94921875, 0.109375 ]\n          },\n          \"spatem\": {\n            \"timestamp\": 1624714123456,\n            \"type\": \"position\",\n            \"data\": {\n              \"type\": \"FeatureCollection\",\n              \"features\": [\n                {\n                  \"type\": \"Feature\",\n                  \"properties\": {\n                    \"isDevicePosition\": true,\n                    \"positioningEngine\": \"External\"\n                  },\n                  \"geometry\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [ -73.57123, 45.50883 ]\n                  }\n                }\n              ]\n            }\n          },\n          \"statid\": {\n            \"uuids\": [ \"feaa\" ],\n            \"uri\": \"https://sniffypedia.org/Product/Google_Eddystone/\",\n            \"deviceIds\": [ \"7265656c652055554944/000000000d09\" ]\n          },\n          \"url\": \"https://www.reelyactive.com/team/obelix/\",\n          \"tags\": [ \"animal\" ]\n        },\n        \"001bc50940810000/1\": {\n          \"directory\": \"parc:office\",\n          \"tags\": [ \"reelceiver\" ]\n        },\n        \"001bc50940820000/1\": {\n          \"directory\": \"parc:lounge\",\n          \"tags\": [ \"OiO\" ]\n        }\n      }\n    }\n\n#### Query strings\n\nThe following query string parameter is supported:\n- include _to include only a specific property in each returned device_\n\nFor example GET /context/tag/animal?include=spatem would return all active devices with the animal _tag_, and include _only_ the spatem property, if any, of each device.\n\n\n### POST /features\n\nCreate the GeoJSON feature, which will return a unique _id_, which is a random RFC 4122 version 4 UUID, without dashes.\n\n#### Example request\n\n| Method | Route                                          | Content-Type     |\n|:-------|:-----------------------------------------------|:-----------------|\n| POST   | /features                                      | application/json |\n\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"name\": \"triangle\" },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [ [ [ 0, 1 ], [ 1, 0 ], [ 0, 0 ], [ 0, 1 ] ] ]\n      }\n    }\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/features/\"\n        }\n      },\n      \"features\": {\n        \"df52b802f4054bdb815102be1d76f8ab\": {\n          \"type\": \"Feature\",\n          \"id\": \"df52b802f4054bdb815102be1d76f8ab\",\n          \"properties\": { \"name\": \"triangle\" },\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [ [ [ 0, 1 ], [ 1, 0 ], [ 0, 0 ], [ 0, 1 ] ] ]\n          }\n        }\n      }\n    }\n\n\n### GET /features/{id}\n\nRetrieve the GeoJSON feature with for the given _id_.\n\n#### Example request\n\n| Method | Route                                          | Content-Type     |\n|:-------|:-----------------------------------------------|:-----------------|\n| GET    | /features/df52b802f4054bdb815102be1d76f8ab     | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/features/df52b802f4054bdb815102be1d76f8ab\"\n        }\n      },\n      \"features\": {\n        \"df52b802f4054bdb815102be1d76f8ab\": {\n          \"type\": \"Feature\",\n          \"id\": \"df52b802f4054bdb815102be1d76f8ab\",\n          \"properties\": { \"name\": \"triangle\" },\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [ [ [ 0, 1 ], [ 1, 0 ], [ 0, 0 ], [ 0, 1 ] ] ]\n          }\n        }\n      }\n    }\n\n\n### DELETE /features/{id}\n\nRemove the GeoJSON feature with the given _id_.\n\n#### Example request\n\n| Method | Route                                          | Content-Type     |\n|:-------|:-----------------------------------------------|:-----------------|\n| DELETE | /features/df52b802f4054bdb815102be1d76f8ab     | application/json |\n\n#### Example response\n\n    {\n      \"_meta\": {\n        \"message\": \"ok\",\n        \"statusCode\": 200\n      },\n      \"_links\": {\n        \"self\": {\n          \"href\": \"http://localhost:3001/features/df52b802f4054bdb815102be1d76f8ab\"\n        }\n      }\n\n\nSocket.IO\n---------\n\nWhen initialised with a Socket.IO server as an option, __chickadee__ supports the following namespace:\n- /context/device/{id}/{type}\n\nWhen a change in context for the given device is detected, a devices event is emitted.  For an example of the devices JSON structure, see the sample response of the /context REST API above.\n\n\n![chickadee logo](https://reelyactive.github.io/chickadee/images/chickadee-bubble.png)\n\n\nWhat's in a name?\n-----------------\n\nThe [Cornell Lab of Ornithology explains](http://www.allaboutbirds.org/guide/black-capped_chickadee/lifehistory): \"The Black-Capped Chickadee hides seeds and other food items to eat later. Each item is placed in a different spot and the chickadee can remember thousands of hiding places.\"  Not only does it have an outstanding associative memory, it is also \"almost universally considered _cute_ thanks to its oversized round head, tiny body, and curiosity about everything, including humans.\"\n\nIf you were entrusting a bird to associate your wireless device with your online stories you'd want it to be cute and friendly enough to eat out of your hand, right?  We could have named this package [Clark's Nutcracker](http://www.allaboutbirds.org/guide/clarks_nutcracker/lifehistory), the bird with arguably the best associative memory, but the whole nut-cracking thing doesn't inspire the same level of friendliness now does it?\n\nOne more fun fact that we feel compelled to pass along: \"Every autumn Black-capped Chickadees allow brain neurons containing old information to die, replacing them with new neurons so they can adapt to changes in their social flocks and environment even with their tiny brains.\"  Wow, that's database efficiency that we can aspire to!\n\n\nProject History\n---------------\n\n__chickadee__ v1.0.0 was released in July 2019, superseding all earlier versions, the latest of which remains available in the [release-0.4 branch](https://github.com/reelyactive/chickadee/tree/release-0.4) and as [chickadee@0.4.10 on npm](https://www.npmjs.com/package/chickadee/v/0.4.10).\n\n__chickadee__ v1.4.0 migrates to [ESMapDB](https://github.com/reelyactive/esmapdb) from [NeDB](https://github.com/louischatriot/nedb).  If upgrading from a previous version, any stored associations will need to be recreated.\n\n\nContributing\n------------\n\nDiscover [how to contribute](CONTRIBUTING.md) to this open source project which upholds a standard [code of conduct](CODE_OF_CONDUCT.md).\n\n\nSecurity\n--------\n\nConsult our [security policy](SECURITY.md) for best practices using this open source software and to report vulnerabilities.\n\n\nLicense\n-------\n\nMIT License\n\nCopyright (c) 2015-2025 [reelyActive](https://www.reelyactive.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR \nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, \nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE \nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER \nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN \nTHE SOFTWARE.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freelyactive%2Fchickadee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freelyactive%2Fchickadee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freelyactive%2Fchickadee/lists"}