{"id":17124946,"url":"https://github.com/shellyln/sf-vf-slds-for-react-boilerplate","last_synced_at":"2026-05-19T07:05:20.088Z","repository":{"id":74004335,"uuid":"494665864","full_name":"shellyln/sf-vf-slds-for-react-boilerplate","owner":"shellyln","description":"Salesforce \"Visualforce\" + \"Lightning Design System for React\" boilerplate 🚀","archived":false,"fork":false,"pushed_at":"2022-05-21T03:06:16.000Z","size":1752,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T03:34:41.868Z","etag":null,"topics":["boilerplate","quickstart","react","salesforce","sfdx","slds"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shellyln.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2022-05-21T03:04:22.000Z","updated_at":"2022-05-21T03:15:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"6559bca8-ae44-4904-abba-48e85d3d9ad9","html_url":"https://github.com/shellyln/sf-vf-slds-for-react-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/shellyln/sf-vf-slds-for-react-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shellyln%2Fsf-vf-slds-for-react-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shellyln%2Fsf-vf-slds-for-react-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shellyln%2Fsf-vf-slds-for-react-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shellyln%2Fsf-vf-slds-for-react-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shellyln","download_url":"https://codeload.github.com/shellyln/sf-vf-slds-for-react-boilerplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shellyln%2Fsf-vf-slds-for-react-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281342920,"owners_count":26484890,"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","status":"online","status_checked_at":"2025-10-27T02:00:05.855Z","response_time":61,"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":["boilerplate","quickstart","react","salesforce","sfdx","slds"],"created_at":"2024-10-14T18:43:45.388Z","updated_at":"2025-10-27T21:19:25.429Z","avatar_url":"https://github.com/shellyln.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sf-vf-slds-for-react-boilerplate\n\nSalesforce \"Visualforce\" + \"Lightning Design System for React\" boilerplate 🚀\n\n* https://react.lightningdesignsystem.com/\n* https://reactjs.org/\n* https://www.lightningdesignsystem.com/\n\n\n---\n\n## 🧩 Prerequirements\n\n* Node.js \u003e= 16\n* Bash\n* Salesforce CLI (sfdx)\n\n\n## 🪄 Preinstalled packages\n\n### Dev dependencies\n\n* eslint-plugin-react\n\n### Bundled libraries\n\n* requirejs (MIT)\n* @babel/standalone (MIT)\n* react (MIT)\n* @salesforce/design-system-react (BSD-3-Clause)\n\n\n## ⚙️ Setup\n\n```bash\nsfdx force:auth:web:login -r https://login.salesforce.com -a my-dev-org\n# Or create new Scratch Org:\n# sfdx force:org:create -f project-scratch-def.json -a my-dev-org --setdefaultusername\n\nsfdx force:alias:list\nsfdx force:org:list\nsfdx config:set defaultusername=my-dev-org\nsfdx force:org:open\n\n# Install eslint\nnpm install\n```\n\n## 💡 Examples\n\n### force-app\\main\\default\\pages\\HelloWorld1.page\n* \"Lightning Design System for React\" On-the-Fly transpile example\n\n```\n.\n└── force-app/main/default/\n    ├── components/\n    │   └── React_prod.component\n    ├── pages/\n    │   └── HelloWorld1.page\n    └── staticresources/\n        ├── HelloWorld1/\n        │   ├── app.js\n        │   └── ...\n        ├── (bundled libraries)\n        └── ...\n```\n\n\n### force-app\\main\\default\\pages\\HelloWorld2.page\n* \"Lightning Design System for React\" + \"Create React App\" + \"React Router\" with TypeScript example\n  * Dynamic chunk loading\n\n```\n.\n├── force-app/main/default/\n│   ├── pages/\n│   │   └── HelloWorld2.page\n│   └── staticresources/\n│       └── HelloWorld2/\n│           ├── (build artifacts)\n│           └── ...\n└── vf-app/HelloWorld2/\n    ├── public/\n    │   └── ...\n    ├── src/\n    │   ├── App.tsx\n    │   └── ...\n    ├── package.json\n    └── ...\n```\n\n\n## ⌛️ Build\n\n```bash\ncd vf-app/HelloWorld2\nnpm run build\ncd ../..\n```\n\n\n## 📦 Deploy\n\nSee https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_types_list.htm\n\n```bash\nsfdx force:source:deploy -m \"StaticResource,ApexComponent,ApexPage\"\n```\n\n---\n\n## ⚖️ License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshellyln%2Fsf-vf-slds-for-react-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshellyln%2Fsf-vf-slds-for-react-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshellyln%2Fsf-vf-slds-for-react-boilerplate/lists"}