{"id":13725748,"url":"https://github.com/cometkim/gatsby-source-velog","last_synced_at":"2025-10-28T10:32:37.263Z","repository":{"id":46780937,"uuid":"152971162","full_name":"cometkim/gatsby-source-velog","owner":"cometkim","description":"GatsbyJS source plugin for Velog","archived":false,"fork":false,"pushed_at":"2022-11-05T11:31:37.000Z","size":99014,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-29T14:45:23.217Z","etag":null,"topics":["gatsby","gatsby-plugin","gatsby-source"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/cometkim.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}},"created_at":"2018-10-14T12:25:03.000Z","updated_at":"2023-05-12T16:52:37.000Z","dependencies_parsed_at":"2023-01-21T02:03:39.266Z","dependency_job_id":null,"html_url":"https://github.com/cometkim/gatsby-source-velog","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cometkim%2Fgatsby-source-velog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cometkim%2Fgatsby-source-velog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cometkim%2Fgatsby-source-velog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cometkim%2Fgatsby-source-velog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cometkim","download_url":"https://codeload.github.com/cometkim/gatsby-source-velog/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238637972,"owners_count":19505512,"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":["gatsby","gatsby-plugin","gatsby-source"],"created_at":"2024-08-03T01:02:33.532Z","updated_at":"2025-10-28T10:32:27.246Z","avatar_url":"https://github.com/cometkim.png","language":"TypeScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# gatsby-source-velog\n[![npm](https://img.shields.io/npm/v/gatsby-source-velog)](https://www.npmjs.org/package/gatsby-source-velog)\n[![License: MIT](https://img.shields.io/github/license/cometkim/gatsby-source-velog)](#LICENSE)\n\n[GatsbyJS](https://www.gatsbyjs.org/) source plugin for [Velog](https://velog.io), the blogging platform created by [@velopert](https://github.com/velopert).\n\n## Installation\n\n```bash\nyarn add gatsby-source-velog\n```\n\nIn your `gatsby-config.js`\n\n```js\n{\n  plugins: [\n    // ...\n    {\n      resolve: 'gatsby-source-velog',\n      options: {\n        username: 'cometkim', // Your Velog username (required)\n      },\n    },\n  ],\n}\n```\n\n## Usage\n\n### Query Examples\n\n```graphql\nquery MyProfile {\n  velogUser {\n    username\n    displayName\n    bio\n    aboutHtml\n    socialProfile {\n      url\n      github\n      twitter\n    }\n  }\n}\n\nquery MyAllPosts {\n  velogUser {\n    posts {\n      title\n      series {\n        node {\n          name\n        }\n      }\n    }\n  }\n}\n```\n\nSee in GraphiQl while `gatsby develop` for more detail.\n\n\n### Rendering Markdown\n\nYou can use [`gatsby-transformer-remark`](https://www.gatsbyjs.com/plugins/gatsby-transformer-remark/) to render `VelogPost` contents.\n\nAdd `gatsby-transformer-remark` into your `gatsby-config.js`\n\n```diff\n{\n  plugins: [\n    // ...\n+   'gatsby-transformer-remark',\n  ],\n}\n```\n\nAnd you can access `MarkdownRemark` nodes from the root `Query` or through the original `VelogPost`.\n\n```graphql\n{\n  allMarkdownRemark {\n    nodes {\n      html\n    }\n  }\n  velogPost {\n    childMarkdownRemark {\n      html\n      tableOfContents\n    }\n  }\n}\n```\n\n### Thumnail Images\n\nEvery thumbnail contents are cloned to [remote `File` nodes](https://www.gatsbyjs.com/plugins/gatsby-source-filesystem/#createremotefilenode). So you can own the images and optimize it using [`gatsby-plugin-image`](https://www.gatsbyjs.com/plugins/gatsby-plugin-image)\n\n## LICENSE\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcometkim%2Fgatsby-source-velog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcometkim%2Fgatsby-source-velog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcometkim%2Fgatsby-source-velog/lists"}