https://github.com/darcyclarke/darcy
👤 all my info, centralized in one place
https://github.com/darcyclarke/darcy
bio darcy data graph info information links nodejs npm open profile
Last synced: about 2 months ago
JSON representation
👤 all my info, centralized in one place
- Host: GitHub
- URL: https://github.com/darcyclarke/darcy
- Owner: darcyclarke
- License: mit
- Created: 2017-05-15T16:09:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-10T18:59:58.000Z (over 4 years ago)
- Last Synced: 2025-08-09T04:23:13.582Z (2 months ago)
- Topics: bio, darcy, data, graph, info, information, links, nodejs, npm, open, profile
- Language: JavaScript
- Homepage: https://darcy.netlify.com/
- Size: 211 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# 👤 darcy
[](https://badge.fury.io/js/darcy) [](https://travis-ci.org/darcyclarke/darcy) [](https://snyk.io/test/github/darcyclarke/darcy) [](https://greenkeeper.io/) [](https://app.netlify.com/sites/api-services/deploys)

The data schema is based on [Open Graph Protocol](http://ogp.me/) metadata spec but slightly modified to add further context/expansion in the default `:profile` & `:book` types while also adding a new `:link` type.
#### Add me to your deps
```bash
$ npm i darcy
# or
$ yarn add darcy
```then...
```js
const darcy = require('darcy')
// or
import darcy from 'darcy'
```#### API Requests
You can query my data directly from: [https://darcy.netlify.com/.netlify/functions/get](https://darcy.netlify.com/.netlify/functions/get)
**Examples:**
```bash
# curl
curl -v https://darcy.netlify.com/.netlify/functions/get # me...
``````js
// fetch
fetch('https://darcy.netlify.com/.netlify/functions/get')
.then(res => res.json())
.then(json => console.log(json)) // me...
``````js
// axios
require('axios').get('https://darcy.netlify.com/.netlify/functions/get')
.then(res => console.log(res.data)) // me...
```