{"id":21928855,"url":"https://github.com/alex-developer/app","last_synced_at":"2026-06-08T16:03:10.505Z","repository":{"id":31349469,"uuid":"34912263","full_name":"Alex-developer/App","owner":"Alex-developer","description":null,"archived":false,"fork":false,"pushed_at":"2015-05-01T16:33:54.000Z","size":1872,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-08T01:21:05.172Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/Alex-developer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-01T16:33:44.000Z","updated_at":"2015-05-01T16:33:54.000Z","dependencies_parsed_at":"2022-09-08T09:10:41.830Z","dependency_job_id":null,"html_url":"https://github.com/Alex-developer/App","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Alex-developer/App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alex-developer%2FApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alex-developer%2FApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alex-developer%2FApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alex-developer%2FApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Alex-developer","download_url":"https://codeload.github.com/Alex-developer/App/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alex-developer%2FApp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34069501,"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-06-08T02:00:07.615Z","response_time":111,"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-11-28T22:28:21.537Z","updated_at":"2026-06-08T16:03:10.488Z","avatar_url":"https://github.com/Alex-developer.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nThis readme file provides a brief overview of the file and folder structure\nincluded in the default MontageJS project directory.\n\n\u003eIMPORTANT: Be sure to replace the contents of this readme file with information\nrelevant to your application before deploying the application or passing it on to\na client.\n\nProject Structure\n============\n\nThe default project directory includes the following files and folders:\n\n* assets/ — Contains global style sheets and images for the application.\n* core/  —  Reserved for the core modules of the application logic.\n* index.html  —  Is the entry-point document for the application.\n* node_modules/  —  Contains the code dependencies required in development.\n\n    Includes Montage, the core framework, and Digit, a mobile-optimized user\n    interface widget set by default. Since MontageJS uses the CommonJS module\n    system, you can leverage the npm ecosystem for additional modules. To add\n    dependencies (e.g., foo), use `npm install foo` in the project directory.\n\n    NOTE: All packages in this directory must be included as dependencies\n    in package.json.\n\n* package.json  —  Describes the application and the dependencies included in\n            the node_modules directory.\n* README.md  —  The default readme file.\n* run-tests.html  —  Is a page to run Jasmine tests manually in the browser.\n* test/  —  Contains tests for the application.\n\n    By default, this directory includes all.js, a module that points the test runner\n    to all jasmine specs. To use this module run `npm install` to get the dependencies\n    required to run unit tests.\n\n* ui/  —  Contains the application user interface components.\n\n    By default, this directory contains one component: main.reel (the Main\n    user interface component).\n\nIn development, you can expand this project directory as necessary; for example,\ndepending on the project you may want to add the following folders:\n\n* locale/  —  For localized content.\n* scripts/  —  For JS libraries that do not support the CommonJS exports object\n           and, therefore, have to be loaded using a `\u003cscript\u003e` tag.\n\nUnit Testing\n============\n\nMontageJS uses some pure unit tests that are straightforward [Jasmine specs][1].\n\nTo install the test code, run `npm install` in your project folder. This installs the\nthe [montage-testing][2] package, which adds some useful utilities for writing\njasmine tests. You will need the file run-tests.html.\n\nFor an example of how we implement unit testing, see the [digit][3] repository:\n\n* [run-tests][4] loads our test environment.\n* `data-module=\"test/all\"` inside the final script tag tells the system to load [test/all.js][5].\n* all.js specifies a list of module ids for the runner to execute.\n\n\u003eNote that in this example, all the tests load a page in an iframe using\n`TestPageLoader.queueTest()`. These are akin to integration tests since they test\nthe component in a real environment.\n\nWe also test some components by [mocking their dependencies][6].\n\nDocumentation\n============\n\nHere are some links you may find helpful:\n\n* [API Reference][7]\n* [Documentation][8]\n* [FAQ][9]\n\nContact\n======\n\n* Got questions? Join us on [irc.freenode.net#montage][10].\n* Got feedback or want to report a bug? Let us know by creating a new [Github issue][11].\n* Want to contribute? [Pull-requests][12] are more than welcome.\n\n[1]: https://github.com/montagejs/montage/blob/master/test/core/super-spec.js        \"Jasmine specs\"\n[2]: https://github.com/montagejs/montage-testing        \"montage-testing\"\n[3]: https://github.com/montagejs/digit        \"digit\"\n[4]: https://github.com/montagejs/digit/blob/master/run-tests.html        \"run-tests\"\n[5]: https://github.com/montagejs/digit/tree/master/test        \"test/all.js\"\n[6]: https://github.com/montagejs/montage/blob/master/test/base/abstract-button-spec.js        \"mocking their dependencies\"\n[7]: http://montagejs.org/api/        \"API Reference\"\n[8]: http://montagejs.org/docs/        \"Documentation\"\n[9]: http://montagejs.org/docs/faq.html        \"FAQ\"\n[10]: http://webchat.freenode.net/?channels=montage        \"irc.freenode.net#montage\"\n[11]: https://github.com/montagejs/montage/issues        \"Github issue\"\n[12]: https://github.com/montagejs/montage/pulls        \"Pull-requests\"\n\nLast edited: May 9, 2014\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falex-developer%2Fapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falex-developer%2Fapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falex-developer%2Fapp/lists"}