{"id":28466577,"url":"https://github.com/locize/locizify-ssg","last_synced_at":"2026-07-11T22:31:17.830Z","repository":{"id":66316587,"uuid":"462856209","full_name":"locize/locizify-ssg","owner":"locize","description":"Node.js script to render and generate website pages that uses locizify, to optimize SEO","archived":false,"fork":false,"pushed_at":"2026-07-06T15:06:51.000Z","size":45,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-07-09T03:33:35.580Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/locize.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":"https://locize.com"}},"created_at":"2022-02-23T18:21:50.000Z","updated_at":"2026-07-06T15:07:09.000Z","dependencies_parsed_at":"2023-03-13T02:46:19.489Z","dependency_job_id":"1344c2ba-5f56-4a2e-8554-db169460315d","html_url":"https://github.com/locize/locizify-ssg","commit_stats":null,"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"purl":"pkg:github/locize/locizify-ssg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/locize%2Flocizify-ssg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/locize%2Flocizify-ssg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/locize%2Flocizify-ssg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/locize%2Flocizify-ssg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/locize","download_url":"https://codeload.github.com/locize/locizify-ssg/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/locize%2Flocizify-ssg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35377012,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-11T02:00:05.354Z","response_time":104,"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":"2025-06-07T07:04:50.223Z","updated_at":"2026-07-11T22:31:17.825Z","avatar_url":"https://github.com/locize.png","language":"JavaScript","funding_links":["https://locize.com"],"categories":[],"sub_categories":[],"readme":"# Introduction\n\n[![npm version](https://img.shields.io/npm/v/locizify-ssg.svg?style=flat-square)](https://www.npmjs.com/package/locizify-ssg)\n\n**EXPERIMENTAL**\n\nThis package helps to generate website pages on server side that uses [locizify](https://github.com/locize/locizify). This may help to improve SEO, etc.\n\n# Getting started\n\nSource can be loaded via [npm](https://www.npmjs.com/package/locizify-ssg).\n\n```bash\n# npm package\n$ npm install locizify-ssg\n```\n\nUsage via code:\n\n```js\nimport ssg from 'locizify-ssg'\n\nssg('index.html', ['de', 'it'], '{{lng}}.html', {\n  // debug: true,\n  fallbackLng: 'en',\n  backend: {\n    projectId: '123aa5aa-4660-4154-b6d9-907dbef10bb2',\n    version: 'production'\n  },\n  namespace: 'landingpage'\n})\n\n// or\nssg('index.html', 'de', 'de.html', {\n  // debug: true,\n  fallbackLng: 'en',\n  backend: {\n    projectId: '123aa5aa-4660-4154-b6d9-907dbef10bb2',\n    version: 'production'\n  },\n  namespace: 'landingpage'\n})\n```\n\n\n\nUsage via CLI:\n\n```sh\nnpm install locizify-ssg -g\n\n# -i is the input file\n# -o is the output file\n# -l the languages\n# -s the locizify options\n\nlocizify-ssg -i /Users/user/my/index.html -o /Users/user/my/de.html -l de -s \"{\\\"fallbackLng\\\":\\\"en\\\",\\\"backend\\\":{\\\"projectId\\\":\\\"123aa5aa-4660-4154-b6d9-907dbef10bb2\\\",\\\"version\\\":\\\"production\\\"},\\\"namespace\\\":\\\"landingpage\\\"}\"\n\n\n# or for multiple languages\n\nlocizify-ssg -i /Users/user/my/index.html -o /Users/user/my/{{lng}}.html -l de,it,fr -s \"{\\\"fallbackLng\\\":\\\"en\\\",\\\"backend\\\":{\\\"projectId\\\":\\\"123aa5aa-4660-4154-b6d9-907dbef10bb2\\\",\\\"version\\\":\\\"production\\\"},\\\"namespace\\\":\\\"landingpage\\\"}\"\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flocize%2Flocizify-ssg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flocize%2Flocizify-ssg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flocize%2Flocizify-ssg/lists"}