{"id":15287663,"url":"https://github.com/flowchain/devify-cli","last_synced_at":"2026-05-06T05:33:29.774Z","repository":{"id":80210063,"uuid":"52071456","full_name":"flowchain/devify-cli","owner":"flowchain","description":"devify-cli is a cli tool for getting started with devify","archived":false,"fork":false,"pushed_at":"2016-08-08T13:32:25.000Z","size":12,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-18T21:25:13.276Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/DevifyPlatform/devify-server","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flowchain.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2016-02-19T08:01:21.000Z","updated_at":"2017-07-04T09:22:10.000Z","dependencies_parsed_at":"2023-07-25T14:18:55.684Z","dependency_job_id":null,"html_url":"https://github.com/flowchain/devify-cli","commit_stats":null,"previous_names":["devifyplatform/devify-cli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/flowchain/devify-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowchain%2Fdevify-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowchain%2Fdevify-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowchain%2Fdevify-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowchain%2Fdevify-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flowchain","download_url":"https://codeload.github.com/flowchain/devify-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowchain%2Fdevify-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32680789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-09-30T15:33:49.349Z","updated_at":"2026-05-06T05:33:29.702Z","avatar_url":"https://github.com/flowchain.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](http://res.cloudinary.com/jollen/image/upload/h_110/v1455862763/devify-logo_rh63vl.png)\n\n# devify-cli\n\n[![Build Status](https://travis-ci.org/DevifyPlatform/devify-cli.svg?branch=master)](https://travis-ci.org/DevifyPlatform/devify-cli)\n[![npm version](https://img.shields.io/npm/v/devify-cli.svg?style=flat)](https://www.npmjs.com/package/devify-cli)\n\n*devify* is an IoT server boilerplate. It is extremely light weight and simple to use. To get to speed up, a cli tools is provided.\n\n## Usage\n\n```\n  Usage: devify [options] [command]\n\n\n  Commands:\n\n    new \u003cdir\u003e     Create a new devify-server project in the directory\n    update \u003cdir\u003e  Update your project libraries\n    ui \u003cname\u003e     Install one ui package\n    serve \u003cdir\u003e   Start ui package server\n\n  Options:\n\n    -h, --help     output usage information\n    -V, --version  output the version number\n    -V, --version  output the version number\n```\n\n## Quickstart\n\n*devify-cli* is a cli tool for getting started with [devify](https://github.com/DevifyPlatform/devify-server)\n```\nnpm install -g devify-cli\n```\n\nCreate a new project with ```new``` command\n```\ndevify new esp8266-iot\n```\n\nInstall dependencies\n```\ncd esp8266-iot \u0026\u0026 npm install\n```\n\nStart the server\n```\nnode coap-broker-server-events.js\n```\n\nBy default, the IoT server is listening at ```coap://localhost:8000``` to accept CoAP requests. Please use an IP address to listen from requests. Use ```HOST``` environment to achieve this.\n\n```\n$ export HOST=192.168.0.100\n$ node coap-broker-server-events.js\nWoT.City/CoAP server is listening at coap://192.168.0.100:8000\n```\nThe message shows that the server is listening at ```coap://192.168.0.100:8000```.\n\n## Update Project\n\nDevify project is developing and will be continous integrated into [devify-server](https://github.com/DevifyPlatform/devify-server). You can update your project library code with ```update``` command.\n\n```\n$ devify update \u003cyour_dir\u003e\n```\n\n### Update Manually\n\nIf you would like to update your project by ```git``` manually. You can just upgrade the ```libs/``` folder of your own project by the following commands.\n\n```\n$ cd \u003cyour-dir\u003e\n$ git remote add devify https://github.com/DevifyPlatform/devify-server\n$ git fetch devify\n$ git checkout devify/master libs\n$ git remote remove devify\n```\n\nSince all the changes of upstream will only be in ```libs```, you can just checkout ```libs/``` from upstream master.\n\n## ESP8266 Howto\n\nThe server is listening at ```coap://192.168.0.100:8000``` to accept CoAP requests. Use NodeMCU and Lua to send message.\n\n```\n-- Configure the ESP as a station (client)\nwifi.setmode(wifi.STATION)  \nwifi.sta.config(\"\u003cSSID\u003e\", \"\u003cPASSWORD\u003e\")  \nwifi.sta.autoconnect(1)\n\n-- Create a CoAP client\ncc = coap.Client()\n\n-- Make a POST request\nuri=\"coap://127.0.0.1:8000/object/12345678/send\"\n\ntmr.alarm(0, 1000, 1, function() \n    cc:post(uri, \"{\\\"temp\\\":20}\\r\\n\")\nend)\n```\n\n## URI Style\n\n```\ncoap://127.0.0.1:8000/object/\u003cObjectID\u003e/send\n```\n\n* *object* is the resource name\n* *\u0026lt;ObjectID\u0026gt;* is the unique ID of the resource. Please assign a string for your device.\n* *send* is the action which means \"sending data to the server*\n\n## Tutorial\n\nPlease refer to [devify-server](https://github.com/DevifyPlatform/devify-server/blob/master/README.md) for more detailed.\n\n## License\n\ndevify-cli is released under the [MIT License](http://www.opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowchain%2Fdevify-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflowchain%2Fdevify-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowchain%2Fdevify-cli/lists"}