{"id":15046888,"url":"https://github.com/mayognaise/pretty-contentful","last_synced_at":"2026-03-11T14:02:45.401Z","repository":{"id":57330122,"uuid":"151866384","full_name":"mayognaise/pretty-contentful","owner":"mayognaise","description":"Convert Contentful data simpler","archived":false,"fork":false,"pushed_at":"2018-10-15T16:26:29.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T13:36:51.084Z","etag":null,"topics":["contentful","prettify","pretty"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mayognaise.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-06T17:48:58.000Z","updated_at":"2021-03-04T16:54:55.000Z","dependencies_parsed_at":"2022-08-29T04:30:47.848Z","dependency_job_id":null,"html_url":"https://github.com/mayognaise/pretty-contentful","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayognaise%2Fpretty-contentful","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayognaise%2Fpretty-contentful/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayognaise%2Fpretty-contentful/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayognaise%2Fpretty-contentful/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mayognaise","download_url":"https://codeload.github.com/mayognaise/pretty-contentful/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241928519,"owners_count":20043822,"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":["contentful","prettify","pretty"],"created_at":"2024-09-24T20:53:42.535Z","updated_at":"2026-03-11T14:02:45.338Z","avatar_url":"https://github.com/mayognaise.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pretty-contentful\n\nConvert Contentful data simpler\n\n## Install\n\n```bash\nnpm install pretty-contentful\n```\n\n## Usage\n\n```javascript\nconst contentful = require('contentful');\nconst prettify = require('pretty-contentful');\n\nconst client = contentful.createClient({\n  accessToken: ACCESS_TOKEN,\n  space: SPACE\n});\n\nclient.getEntries({\n  content_type: 'page',\n  include: 3,\n}).then(entries =\u003e prettify(entries.items));\n```\n\n## Example\n\n### `getEntry`\n\n```javascript\nconst prettify = require('pretty-contentful');\n\nclient.getEntry('XNZt3G2nySkKcasU2ma0k').then(entry =\u003e prettify(entry));\n```\n\nAfter:\n```json\n{\n  \"id\": \"XNZt3G2nySkKcasU2ma0k\",\n  \"createdAt\": \"2018-10-06T18:15:44.698Z\",\n  \"updatedAt\": \"2018-10-06T18:15:44.698Z\",\n  \"locale\": \"en-US\",\n  \"spaceId\": \"57ms2witonnw\",\n  \"contentType\": \"page\",\n  \"entryTitle\": \"About\",\n  \"slug\": \"/about\",\n  \"title\": \"About: pretty-contentful\"\n}\n```\n\nBefore:\n```json\n{\n  \"sys\": {\n    \"space\": {\n      \"sys\": {\n        \"type\": \"Link\",\n        \"linkType\": \"Space\",\n        \"id\": \"57ms2witonnw\"\n      }\n    },\n    \"id\": \"XNZt3G2nySkKcasU2ma0k\",\n    \"type\": \"Entry\",\n    \"createdAt\": \"2018-10-06T18:15:44.698Z\",\n    \"updatedAt\": \"2018-10-06T18:15:44.698Z\",\n    \"environment\": {\n      \"sys\": {\n        \"id\": \"master\",\n        \"type\": \"Link\",\n        \"linkType\": \"Environment\"\n      }\n    },\n    \"revision\": 1,\n    \"contentType\": {\n      \"sys\": {\n        \"type\": \"Link\",\n        \"linkType\": \"ContentType\",\n        \"id\": \"page\"\n      }\n    },\n    \"locale\": \"en-US\"\n  },\n  \"fields\": {\n    \"entryTitle\": \"About\",\n    \"slug\": \"/about\",\n    \"title\": \"About: pretty-contentful\"\n  }\n}\n```\n\n### `getEntries`\n\n```javascript\nconst prettify = require('pretty-contentful');\n\nclient.getEntries({\n  content_type: 'page',\n  include: 3,\n}).then(entries =\u003e prettify(entries.items));\n```\n\nAfter:\n```json\n[\n  {\n    \"id\": \"37XQFMMcfeWuCM2Oq0kkAw\",\n    \"createdAt\": \"2018-10-06T18:14:53.050Z\",\n    \"updatedAt\": \"2018-10-06T18:14:53.050Z\",\n    \"locale\": \"en-US\",\n    \"spaceId\": \"57ms2witonnw\",\n    \"contentType\": \"page\",\n    \"entryTitle\": \"Home (Default)\",\n    \"slug\": \"/\",\n    \"title\": \"Pretty Contentful\",\n    \"description\": \"I love Contentful!\",\n    \"image\": {\n      \"id\": \"5a25O6egjKKYASQ4gm0Cku\",\n      \"createdAt\": \"2018-10-06T18:14:40.361Z\",\n      \"updatedAt\": \"2018-10-06T18:14:40.361Z\",\n      \"locale\": \"en-US\",\n      \"spaceId\": \"57ms2witonnw\",\n      \"title\": \"og-contentful\",\n      \"file\": {\n        \"url\": \"//images.ctfassets.net/57ms2witonnw/5a25O6egjKKYASQ4gm0Cku/a7405e9d26fd986ba4a0b505864d6db8/og-contentful.png\",\n        \"details\": {\n          \"size\": 15860,\n          \"image\": {\n            \"width\": 1200,\n            \"height\": 630\n          }\n        },\n        \"fileName\": \"og-contentful.png\",\n        \"contentType\": \"image/png\"\n      }\n    }\n  },\n  {\n    \"id\": \"XNZt3G2nySkKcasU2ma0k\",\n    \"createdAt\": \"2018-10-06T18:15:44.698Z\",\n    \"updatedAt\": \"2018-10-06T18:15:44.698Z\",\n    \"locale\": \"en-US\",\n    \"spaceId\": \"57ms2witonnw\",\n    \"contentType\": \"page\",\n    \"entryTitle\": \"About\",\n    \"slug\": \"/about\",\n    \"title\": \"About: pretty-contentful\"\n  }\n]\n```\n\nBefore:\n```json\n[\n  {\n    \"sys\": {\n      \"space\": {\n        \"sys\": {\n          \"type\": \"Link\",\n          \"linkType\": \"Space\",\n          \"id\": \"57ms2witonnw\"\n        }\n      },\n      \"id\": \"37XQFMMcfeWuCM2Oq0kkAw\",\n      \"type\": \"Entry\",\n      \"createdAt\": \"2018-10-06T18:14:53.050Z\",\n      \"updatedAt\": \"2018-10-06T18:14:53.050Z\",\n      \"environment\": {\n        \"sys\": {\n          \"id\": \"master\",\n          \"type\": \"Link\",\n          \"linkType\": \"Environment\"\n        }\n      },\n      \"revision\": 1,\n      \"contentType\": {\n        \"sys\": {\n          \"type\": \"Link\",\n          \"linkType\": \"ContentType\",\n          \"id\": \"page\"\n        }\n      },\n      \"locale\": \"en-US\"\n    },\n    \"fields\": {\n      \"entryTitle\": \"Home (Default)\",\n      \"slug\": \"/\",\n      \"title\": \"Pretty Contentful\",\n      \"description\": \"I love Contentful!\",\n      \"image\": {\n        \"sys\": {\n          \"space\": {\n            \"sys\": {\n              \"type\": \"Link\",\n              \"linkType\": \"Space\",\n              \"id\": \"57ms2witonnw\"\n            }\n          },\n          \"id\": \"5a25O6egjKKYASQ4gm0Cku\",\n          \"type\": \"Asset\",\n          \"createdAt\": \"2018-10-06T18:14:40.361Z\",\n          \"updatedAt\": \"2018-10-06T18:14:40.361Z\",\n          \"environment\": {\n            \"sys\": {\n              \"id\": \"master\",\n              \"type\": \"Link\",\n              \"linkType\": \"Environment\"\n            }\n          },\n          \"revision\": 1,\n          \"locale\": \"en-US\"\n        },\n        \"fields\": {\n          \"title\": \"og-contentful\",\n          \"file\": {\n            \"url\": \"//images.ctfassets.net/57ms2witonnw/5a25O6egjKKYASQ4gm0Cku/a7405e9d26fd986ba4a0b505864d6db8/og-contentful.png\",\n            \"details\": {\n              \"size\": 15860,\n              \"image\": {\n                \"width\": 1200,\n                \"height\": 630\n              }\n            },\n            \"fileName\": \"og-contentful.png\",\n            \"contentType\": \"image/png\"\n          }\n        }\n      }\n    }\n  },\n  {\n    \"sys\": {\n      \"space\": {\n        \"sys\": {\n          \"type\": \"Link\",\n          \"linkType\": \"Space\",\n          \"id\": \"57ms2witonnw\"\n        }\n      },\n      \"id\": \"XNZt3G2nySkKcasU2ma0k\",\n      \"type\": \"Entry\",\n      \"createdAt\": \"2018-10-06T18:15:44.698Z\",\n      \"updatedAt\": \"2018-10-06T18:15:44.698Z\",\n      \"environment\": {\n        \"sys\": {\n          \"id\": \"master\",\n          \"type\": \"Link\",\n          \"linkType\": \"Environment\"\n        }\n      },\n      \"revision\": 1,\n      \"contentType\": {\n        \"sys\": {\n          \"type\": \"Link\",\n          \"linkType\": \"ContentType\",\n          \"id\": \"page\"\n        }\n      },\n      \"locale\": \"en-US\"\n    },\n    \"fields\": {\n      \"entryTitle\": \"About\",\n      \"slug\": \"/about\",\n      \"title\": \"About: pretty-contentful\"\n    }\n  }\n]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayognaise%2Fpretty-contentful","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmayognaise%2Fpretty-contentful","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayognaise%2Fpretty-contentful/lists"}