{"id":13432163,"url":"https://github.com/zurb/foundation-apps","last_synced_at":"2025-09-28T20:31:49.406Z","repository":{"id":17855666,"uuid":"20778549","full_name":"zurb/foundation-apps","owner":"zurb","description":"The first front-end framework created for developing fully responsive web apps.","archived":true,"fork":false,"pushed_at":"2018-07-15T07:15:12.000Z","size":5379,"stargazers_count":1567,"open_issues_count":147,"forks_count":216,"subscribers_count":124,"default_branch":"master","last_synced_at":"2025-08-26T13:57:45.545Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://foundation.zurb.com/apps","language":"CSS","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/zurb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-12T18:35:41.000Z","updated_at":"2025-08-25T14:32:38.000Z","dependencies_parsed_at":"2022-09-09T13:20:53.830Z","dependency_job_id":null,"html_url":"https://github.com/zurb/foundation-apps","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/zurb/foundation-apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zurb%2Ffoundation-apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zurb%2Ffoundation-apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zurb%2Ffoundation-apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zurb%2Ffoundation-apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zurb","download_url":"https://codeload.github.com/zurb/foundation-apps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zurb%2Ffoundation-apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277088734,"owners_count":25758763,"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-09-26T02:00:09.010Z","response_time":78,"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":"2024-07-31T02:01:09.058Z","updated_at":"2025-09-28T20:31:49.012Z","avatar_url":"https://github.com/zurb.png","language":"CSS","funding_links":[],"categories":["CSS"],"sub_categories":[],"readme":"## Deprecation Notice\nWe believe the best solution for the future of the web is a single, robust framework capable of developing webapps and websites, so we’ve made the decision to streamline our development and move Foundation for Apps into our \u003ca href=\"http://zurb.com/playground/foundation-for-apps\" target=\"_blank\"\u003eexperimental playground\u003c/a\u003e to concentrate on Foundation for Sites. Foundation has, and will continue to push the web forward, and we’re incredibly excited about the future. You can follow along with the \u003ca href=\"https://github.com/zurb/foundation-sites/wiki/Project-Roadmap\" target=\"_blank\"\u003eFoundation for Sites roadmap\u003c/a\u003e to get more details on where the project is headed and learn how to get involved.\n\n# Foundation for Apps\n\n[![Build Status](https://travis-ci.org/zurb/foundation-apps.svg)](https://travis-ci.org/zurb/foundation-apps)\n\nThis is [Foundation for Apps](http://foundation.zurb.com/apps), an Angular-powered framework for building powerful responsive web apps, from your friends at [ZURB](http://zurb.com).\n\n## Requirements\n\nYou'll need the following software installed to get started.\n\n  * [Node.js](http://nodejs.org): Use the installer provided on the NodeJS website.\n  * [Git](http://git-scm.com/downloads): Use the installer for your OS.\n    * Windows users can also try [Git for Windows](http://git-for-windows.github.io/).\n  * [Ruby](https://www.ruby-lang.org/en/): Use the installer for your OS. For Windows users, [JRuby](http://jruby.org/) is a popular alternative.\n    * With Ruby installed, run `gem install bundler sass`.\n  * [Gulp](http://gulpjs.com/) and [Bower](http://bower.io): Run `[sudo] npm install -g gulp bower`\n\n## Get Started\n\nThe Sass and JavaScript components are available on Bower and npm.\n```\nbower install foundation-apps --save\nnpm install foundation-apps --save\n```\n\nYou can also use our command-line interface to quickly setup a basic Foundation for Apps project. It includes a pre-built Gulpfile that compiles an Angular-powered web app for you.\n\nInstall it with this command:\n```\nnpm install -g foundation-cli bower gulp\n```\n\nNow you can make a new project:\n```\nfoundation-apps new myApp\ncd myApp\n```\n\nWhile working on your project, run:\n```\nnpm start\n```\n\nThis will assemble the templates, static assets, Sass, and JavaScript. You can view the test server at this URL:\n```\nhttp://localhost:8080\n```\n\n## Building this Repo\n\nIf you want to work with the source code directly or compile our documentation, follow these steps:\n```\ngit clone https://github.com/zurb/foundation-apps.git\ncd foundation-apps\nnpm install\n```\n\nWhile you're working on the code, run:\n```\nnpm start\n```\n\nThe documentation can be viewed at the same URL as above.\n\n### Directory Structure\n\n* `build`: This is where our documentation is assembled. **Don't edit these files directly, as they're overwritten every time you make a change!**\n* `docs`: The Foundation for Apps documentation.\n* `scss`: The Sass components.\n* `js`: The Angular modules and directives, and other external libraries.\n* `iconic`: A set of 24 icons from the folks at [Iconic](https://useiconic.com/).\n* `dist`: Compiled CSS and JavaScript files, in minified and unmified flavors.\n* `tests`: Unit tests for the Angular modules.\n\n## Versioning\n\nFoundation for Apps follows semver, so we won't introduce breaking changes in minor or patch versions. The `master` branch will always have the newest changes, so it's not necessarily production ready. The `stable` branch will always have the most recent stable version of the framework.\n\n## Contributing\n\nWe love feedback! Help us find bugs and suggest improvements or new features. Follow us on Twitter at [@ZURBFoundation](https://twitter.com/zurbfoundation) to keep up-to-date with what's new, or to just shoot the breeze.\n\nIf you find a problem or have an idea, open a [new issue](https://github.com/zurb/foundation-apps/issues) on GitHub. When filing a bug report, make sure you specify the browser and operating system you're on, and toss us a screenshot or show us how we can recreate the issue.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzurb%2Ffoundation-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzurb%2Ffoundation-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzurb%2Ffoundation-apps/lists"}