{"id":21038606,"url":"https://github.com/degree9/featherscript","last_synced_at":"2025-05-15T16:31:20.648Z","repository":{"id":62432335,"uuid":"71656264","full_name":"degree9/featherscript","owner":"degree9","description":"A FeathersJS compatibility layer for ClojureScript.","archived":false,"fork":false,"pushed_at":"2020-06-08T18:41:01.000Z","size":139,"stargazers_count":8,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-14T23:04:11.802Z","etag":null,"topics":["clojure","clojurescript","feathers","feathersjs"],"latest_commit_sha":null,"homepage":"","language":"Clojure","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/degree9.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"patreon":"degree9"}},"created_at":"2016-10-22T17:56:42.000Z","updated_at":"2020-06-08T18:41:04.000Z","dependencies_parsed_at":"2022-11-01T20:47:20.154Z","dependency_job_id":null,"html_url":"https://github.com/degree9/featherscript","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/degree9%2Ffeatherscript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/degree9%2Ffeatherscript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/degree9%2Ffeatherscript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/degree9%2Ffeatherscript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/degree9","download_url":"https://codeload.github.com/degree9/featherscript/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225361664,"owners_count":17462280,"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":["clojure","clojurescript","feathers","feathersjs"],"created_at":"2024-11-19T13:33:33.562Z","updated_at":"2024-11-19T13:33:34.779Z","avatar_url":"https://github.com/degree9.png","language":"Clojure","funding_links":["https://patreon.com/degree9","https://www.patreon.com/degree9"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"/.github/D9 Featherscript.png\" alt=\"d9featherscript\" width=\"550px\"\u003e\u003c/p\u003e\n\n[![Clojars Project](https://img.shields.io/clojars/v/degree9/featherscript.svg)](https://clojars.org/degree9/featherscript)\u003c!-- [![Dependencies Status](https://versions.deps.co/degree9/featherscript/status.svg)](https://versions.deps.co/degree9/featherscript) --\u003e [![Downloads](https://versions.deps.co/degree9/featherscript/downloads.svg)](https://versions.deps.co/degree9/featherscript)\n\u003c!---\n[![CircleCI](https://circleci.com/gh/degree9/featherscript.svg?style=svg)](https://circleci.com/gh/degree9/featherscript)\n---\u003e\n\nClojureScript layer around Feathers.js.\n\n---\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://degree9.io\" align=\"center\"\u003e\n    \u003cimg width=\"135\" src=\"/.github/logo.png\"\u003e\n  \u003c/a\u003e\n  \u003cbr\u003e\n  \u003cb\u003eD9 Featherscript is developed and maintained by Degree9\u003c/b\u003e\n\u003c/p\u003e\n\n---\n\n## Feathers Application\n\nThe `feathers.application` namespace is the starting point for all feathers apps. \n\n```\n(ns app.server\n  (:require [feathers.application :as feathers]))\n\n(def app (feathers/app))\n```\n\nAdditionally all of the methods of the feathers app object can be called from the `feathers.application` namespace.\nSee the [API Docs](https://docs.feathersjs.com/api/application.html) for a full list of methods.\n\n## Feathers Services\n\nServices provide the main application logic for feathers apps, they are JS objects that implement request methods.\nService methods are CRUD methods that can optionally be implemented by a service.\n\n```\n(ns app.services)\n\n(defn my-service []\n  (reify\n    Object\n    (find   [this params] ...)\n    (get    [this id params] ...)\n    (create [this data params] ...)\n    (update [this id data params] ...)\n    (patch  [this id data params] ...)\n    (remove [this id params] ...)))\n```\n\n## Feathers Hooks\n\n\n## Feathers Events\n\n---\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.patreon.com/degree9\" align=\"center\"\u003e\n    \u003cimg src=\"https://c5.patreon.com/external/logo/become_a_patron_button@2x.png\" width=\"160\" alt=\"Patreon\"\u003e\n  \u003c/a\u003e\n  \u003cbr\u003e\n  \u003cb\u003eSupport this and other open-source projects on Patreon!\u003c/b\u003e\n\u003c/p\u003e\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdegree9%2Ffeatherscript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdegree9%2Ffeatherscript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdegree9%2Ffeatherscript/lists"}