{"id":15857411,"url":"https://github.com/mcabreradev/vigilant-waffle","last_synced_at":"2025-04-01T19:42:36.010Z","repository":{"id":79827468,"uuid":"58477840","full_name":"mcabreradev/vigilant-waffle","owner":"mcabreradev","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-29T20:23:25.000Z","size":168,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-07T12:47:17.216Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/mcabreradev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2016-05-10T16:43:07.000Z","updated_at":"2016-05-10T18:18:18.000Z","dependencies_parsed_at":"2024-02-29T21:45:13.083Z","dependency_job_id":null,"html_url":"https://github.com/mcabreradev/vigilant-waffle","commit_stats":{"total_commits":32,"total_committers":1,"mean_commits":32.0,"dds":0.0,"last_synced_commit":"34c471e6ff1765da87a6b16b9abd55ad97557f35"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcabreradev%2Fvigilant-waffle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcabreradev%2Fvigilant-waffle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcabreradev%2Fvigilant-waffle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcabreradev%2Fvigilant-waffle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mcabreradev","download_url":"https://codeload.github.com/mcabreradev/vigilant-waffle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246703267,"owners_count":20820380,"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","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-10-05T20:22:52.585Z","updated_at":"2025-04-01T19:42:35.980Z","avatar_url":"https://github.com/mcabreradev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\nA seed project for Angular 2 apps using Sass. Derived from [mgechev/angular2-seed](https://github.com/mgechev/angular2-seed).\n\nIt is something similar to the Angular Quick Start but does the entire build with gulp.\n\n`angular2-seed-sass` provides the following features:\n\n- Allows you to painlessly update the seed tasks of your already existing project.\n- Ready to go, statically typed build system using gulp for working with TypeScript.\n- Production and development builds.\n- Sample unit tests with Jasmine and Karma including code coverage via [istanbul](https://gotwarlost.github.io/istanbul/).\n- End-to-end tests with Protractor.\n- Development server with Livereload.\n- Following the [best practices for your application’s structure](https://github.com/mgechev/angular2-style-guide).\n- Manager of your type definitions using [typings](https://github.com/typings/typings).\n- Has autoprefixer and sass-lint support.\n- Basic Service Worker, which implements \"Cache then network strategy\".\n- Sass-enabled styling.\n\n# How to start\n\n**Note** that this seed project requires node v4.x.x or higher and npm 2.14.7.\n\nYou must have `ts-node` installed as global. If you don't, use:\n\n```bash\nnpm install -g ts-node\n```\n\nIn order to start using seed:\n\n```bash\ngit clone --depth 1 https://github.com/archfirst/angular2-seed-sass.git\ncd angular2-seed-sass\n# install the project's dependencies\nnpm install\n# watches your files and uses livereload by default\nnpm start\n# api document for the app\nnpm run docs\n\n# dev build\nnpm run build.dev\n# prod build\nnpm run build.prod\n```\n\n_Does not rely on any global dependencies._\n\n# Table of Content\n\n- [Introduction](#introduction)\n- [How to start](#how-to-start)\n- [Table of Content](#table-of-content)\n- [Configuration](#configuration)\n- [How to extend?](#how-to-extend)\n- [Running tests](#running-tests)\n- [Contributing](#contributing)\n- [Directory Structure](#directory-structure)\n- [Change Log](#change-log)\n- [License](#license)\n\n# Configuration\n\nDefault application server configuration\n\n```javascript\nvar PORT             = 5555;\nvar LIVE_RELOAD_PORT = 4002;\nvar DOCS_PORT        = 4003;\nvar APP_BASE         = '/';\n```\n\nConfigure at runtime\n\n```bash\nnpm start -- --port 8080 --reload-port 4000 --base /my-app/\n```\n\n# How to extend?\n\nVisit the [Wiki page](https://github.com/mgechev/angular2-seed/wiki) of the project.\n\n# Running tests\n\n```bash\nnpm test\n\n# Debug - In two different shell windows\nnpm run build.test.watch      # 1st window\nnpm run karma.start           # 2nd window\n\n# code coverage (istanbul)\n# auto-generated at the end of `npm test`\n# view coverage report:\nnpm run serve.coverage\n\n# e2e (aka. end-to-end, integration) - In three different shell windows\n# Make sure you don't have a global instance of Protractor\n\n# npm run webdriver-update \u003c- You will need to run this the first time\nnpm run webdriver-start\nnpm run serve.e2e\nnpm run e2e\n\n# e2e live mode - Protractor interactive mode\n# Instead of last command above, you can use:\nnpm run e2e.live\n```\nYou can learn more about [Protractor Interactive Mode here](https://github.com/angular/protractor/blob/master/docs/debugging.md#testing-out-protractor-interactively)\n\n# Contributing\n\nPlease see the [CONTRIBUTING](https://github.com/mgechev/angular2-seed/blob/master/.github/CONTRIBUTING.md) file for guidelines.\n\n# Directory Structure\n\n```\n.\n├── LICENSE\n├── README.md\n├── gulpfile.ts                \u003c- configuration of the gulp tasks\n├── karma.conf.js              \u003c- configuration of the test runner\n├── package.json               \u003c- dependencies of the project\n├── protractor.conf.js         \u003c- e2e tests configuration\n├── src                        \u003c- source code of the application\n│   ├── home\n│   │   └── components\n│   ├── index.html\n│   ├── main.ts\n│   ├── shared\n│   │   └── services\n│   │       ├── name-list...\n│   │       └── name-list...\n│   └── sw.js                  \u003c- sample service worker\n├── test-main.js               \u003c- testing configuration\n├── tools\n│   ├── README.md              \u003c- build documentation\n│   ├── config\n│   │   ├── project.config.ts  \u003c- configuration of the specific project\n│   │   ├── seed.config....\n│   │   └── seed.config.ts     \u003c- generic configuration of the seed project\n│   ├── config.ts              \u003c- exported configuration (merge both seed.config and project.config, project.config overrides seed.config)\n│   ├── debug.ts\n│   ├── manual_typings\n│   │   ├── project            \u003c- manual ambient typings for the project\n│   │   │   └── sample.pac...\n│   │   └── seed               \u003c- seed manual ambient typings\n│   │       ├── merge-stre..\n│   │       └── slash.d.ts\n│   ├── tasks                  \u003c- gulp tasks\n│   │   ├── project            \u003c- project specific gulp tasks\n│   │   │   └── sample.tas...\n│   │   └── seed               \u003c- seed generic gulp tasks. They can be overriden by the project specific gulp tasks\n│   ├── utils                  \u003c- build utils\n│   │   ├── project            \u003c- project specific gulp utils\n│   │   │   └── sample_util...\n│   │   ├── project.utils.ts\n│   │   ├── seed               \u003c- seed specific gulp utils\n│   │   │   ├── clean.ts\n│   │   │   ├── code_change...\n│   │   │   ├── server.ts\n│   │   │   ├── tasks_tools.ts\n│   │   │   ├── template_loc...\n│   │   │   ├── tsproject.ts\n│   │   │   └── watch.ts\n│   │   └── seed.utils.ts\n│   └── utils.ts\n├── tsconfig.json              \u003c- configuration of the typescript project (ts-node, which runs the tasks defined in gulpfile.ts)\n├── tslint.json                \u003c- tslint configuration\n├── typings                    \u003c- typings directory. Contains all the external typing definitions defined with typings\n├── typings.json\n└── appveyor.yml\n```\n\n# Change Log\n\nYou can follow the [Angular 2 change log here](https://github.com/angular/angular/blob/master/CHANGELOG.md).\n\n# License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcabreradev%2Fvigilant-waffle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmcabreradev%2Fvigilant-waffle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcabreradev%2Fvigilant-waffle/lists"}