{"id":21730119,"url":"https://github.com/nventive/sheet2i18n","last_synced_at":"2026-05-17T17:35:16.876Z","repository":{"id":249861268,"uuid":"706762099","full_name":"nventive/Sheet2i18n","owner":"nventive","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-23T18:29:19.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-25T21:22:35.480Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nventive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2023-10-18T15:09:40.000Z","updated_at":"2024-07-23T18:29:22.000Z","dependencies_parsed_at":"2024-07-23T21:00:52.549Z","dependency_job_id":"10317a6b-439c-4bf1-8a74-c78b9e63addf","html_url":"https://github.com/nventive/Sheet2i18n","commit_stats":null,"previous_names":["nventive/sheet2i18n"],"tags_count":0,"template":false,"template_full_name":"nventive/Template","purl":"pkg:github/nventive/Sheet2i18n","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nventive%2FSheet2i18n","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nventive%2FSheet2i18n/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nventive%2FSheet2i18n/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nventive%2FSheet2i18n/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nventive","download_url":"https://codeload.github.com/nventive/Sheet2i18n/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nventive%2FSheet2i18n/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33147661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2024-11-26T04:12:29.909Z","updated_at":"2026-05-17T17:35:16.846Z","avatar_url":"https://github.com/nventive.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sheet2i18n\n\n## Demo\n\nExample SpreadSheet\nhttps://docs.google.com/spreadsheets/d/1qjNcJ4JEonpwRKVtkR99TOHif1plFsr5jUW2bLXwmhM/\n\n\n## Installation\n\n***Prerequisite:***\n\nNode\n\n***Steps:***\n\n1. Install the latest version of the package from npm as a dev dependency:\n\n```\nnpm i -D sheet2i18n\n```\n\n2. Create a `sheet2i18n.config.js` configuration file in your project's root directory:\n\n```diff\n    my-app\n    ├── node_modules\n+   ├── sheet2i18n.config.js\n    └── package.json\n```\n\n3. Add and edit config values of your newly created `sheet2i18n.config.js` :\n\n```title=\"sheet2i18n.config.js\"\nmodule.exports = {\n    exportPath: \u003cExportPath\u003e,\n    tabsUrl: Array\u003cTabUrl\u003e,\n    localesKey: Array\u003cLocaleKey\u003e,\n};\n```\n\n***Example:***\n\n```title=\"sheet2i18n.config.js\"\n    module.exports = {\n        exportPath: \"locales\",\n        tabsUrl: [\n            \"https://docs.google.com/spreadsheets/d/e/2PACX-1vR8qY9uP-jDrUMpZfk9BYk8qZZ7T-cj3xzEy9DAfauyVci_Od0qvG1EPTiYoNf-SpC_c4A04b54Jv8C/pub?gid=0\u0026single=true\u0026output=csv\",\n            \"https://docs.google.com/spreadsheets/d/e/2PACX-1vR8qY9uP-jDrUMpZfk9BYk8qZZ7T-cj3xzEy9DAfauyVci_Od0qvG1EPTiYoNf-SpC_c4A04b54Jv8C/pub?gid=229463273\u0026single=true\u0026output=csv\",\n        ],\n        localesKey: [\"en\", \"fr\", \"es\"],\n    };\n```\n\nGo to (Google Sheet -\u003e File -\u003e Share -\u003e Publish to web) to generate Google Sheet CSV publish url. \n\n4. Add the command in the `scripts` section of your `package.json` to use the `sheet2i18n` CLI:\n\n[Default] ConfigPath: \"sheet2i18n.config\"\n\n```diff title=\"package.json\"\n\"scripts\": {\n+  \"sheet2i18n\": \"sheet2i18n \u003cConfigPath\u003e\"\n}\n```\n\n***Example:***\n\n```diff title=\"package.json\"\n\"scripts\": {\n+  \"sheet2i18n\": \"sheet2i18n src/app/utilities/config.sheet2i18n\"\n}\n```\n\n## Use\n\nRun the following command in console.\n\n```\nnpm run sheet2i18n\n```\n\n### Dependencies\n\n* [axios/axios](https://github.com/axios/axios) - Promise based HTTP client for the browser and node.js.\n* [adaltas/node-csv](https://github.com/adaltas/node-csv) - Full featured CSV parser with simple api and tested against large datasets.\n\n\n### Project Structure\n\n    /sheet2i18n\n    |--- node_modules/          \u003c-- generated by npm install\n    |--- bin/                   \u003c-- binaries of the modules\n    |--- sheet2i18n.config.js   \u003c-- modules configurations example\n    |--- index.js               \u003c-- entry script\n    |--- package.json           \u003c-- defines build commands and dependencies\n\n\n## License\n\nThis project is licensed under the Apache 2.0 license - see the\n[LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnventive%2Fsheet2i18n","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnventive%2Fsheet2i18n","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnventive%2Fsheet2i18n/lists"}