{"id":13565486,"url":"https://github.com/creationix/refresh","last_synced_at":"2025-09-07T05:33:48.462Z","repository":{"id":66014257,"uuid":"532630","full_name":"creationix/refresh","owner":"creationix","description":"Refreshing REST/Webdav for node","archived":false,"fork":false,"pushed_at":"2022-05-12T19:11:20.000Z","size":19,"stargazers_count":33,"open_issues_count":0,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T02:55:42.956Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/creationix.png","metadata":{"files":{"readme":"README.markdown","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,"roadmap":null,"authors":null}},"created_at":"2010-02-23T20:07:55.000Z","updated_at":"2023-09-08T16:26:27.000Z","dependencies_parsed_at":"2023-04-16T10:16:25.861Z","dependency_job_id":null,"html_url":"https://github.com/creationix/refresh","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/creationix/refresh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Frefresh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Frefresh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Frefresh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Frefresh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/creationix","download_url":"https://codeload.github.com/creationix/refresh/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creationix%2Frefresh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273997254,"owners_count":25204512,"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","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-08-01T13:01:48.188Z","updated_at":"2025-09-07T05:33:48.413Z","avatar_url":"https://github.com/creationix.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Refresh REST/Webdav for node\n\nThis project will be a module that exposes ANY data source as HTTP.  The goals are as follows:\n\n - Implement GET/PUT/POST/DELETE as typically done in web apps\n - Implement enough of WebDav to enable mounting read/write in Finder\n - Further implement WebDav for other clients as time allows and need arises.\n\nThe main goal is to make a simple resource provider for web-apps and other http clients.  This will work with, but not be tied to [node-persistence][]\n\n## RESTful Web Service HTTP methods\n\n\u003ctable border=\"1\"\u003e\n\u003ctbody\u003e\u003ctr\u003e\n\u003cth\u003eResource\u003c/th\u003e\n\u003cth\u003eGET\u003c/th\u003e\n\u003cth\u003ePUT\u003c/th\u003e\n\u003cth\u003ePOST\u003c/th\u003e\n\u003cth\u003eDELETE\u003c/th\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003cth\u003eCollection URI, such as \u003ccode\u003ehttp://example.com/resources/\u003c/code\u003e\u003c/th\u003e\n\n\u003ctd\u003e\u003cb\u003eList\u003c/b\u003e the members of the collection, complete with their member URIs for further navigation. For example, list all the cars for sale.\u003c/td\u003e\n\u003ctd\u003eMeaning defined as \"replace the entire collection with another collection\".\u003c/td\u003e\n\u003ctd\u003e\u003cb\u003eCreate\u003c/b\u003e a new entry in the collection where the ID is assigned automatically by the collection. The ID created is usually included as part of the data returned by this operation.\u003c/td\u003e\n\u003ctd\u003eMeaning defined as \"delete the entire collection\".\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\u003cth\u003eElement URI, such as \u003ccode\u003ehttp://example.com/resources/7HOU57Y\u003c/code\u003e\u003c/th\u003e\n\n\u003ctd\u003e\u003cb\u003eRetrieve\u003c/b\u003e a representation of the addressed member of the collection expressed in an appropriate MIME type\u003c/td\u003e\n\u003ctd\u003e\u003cb\u003eUpdate\u003c/b\u003e the addressed member of the collection or \u003cb\u003ecreate\u003c/b\u003e it with the specified ID.\u003c/td\u003e\n\u003ctd\u003eTreats the addressed member as a collection in its own right and creates a new subordinate of it.\u003c/td\u003e\n\u003ctd\u003e\u003cb\u003eDelete\u003c/b\u003e the addressed member of the collection.\u003c/td\u003e\n\n\u003c/tr\u003e\n\u003c/tbody\u003e\u003c/table\u003e\n\n## WebDav Notes\n\nWebDav clients aren't good about following the spec, here are some notes.\n\n\u003chttp://code.google.com/p/sabredav/wiki/Finder\u003e\n\n[node-persistence]: http://github.com/creationix/node-persistence","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreationix%2Frefresh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcreationix%2Frefresh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreationix%2Frefresh/lists"}