https://github.com/squidmin/angular-storybook
Component-driven development (CDD) environment for Angular
https://github.com/squidmin/angular-storybook
angular angularjs cdd component-driven-design component-driven-development component-library
Last synced: about 2 months ago
JSON representation
Component-driven development (CDD) environment for Angular
- Host: GitHub
- URL: https://github.com/squidmin/angular-storybook
- Owner: squidmin
- License: mit
- Created: 2023-09-08T23:44:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-08T23:45:17.000Z (over 1 year ago)
- Last Synced: 2025-02-07T13:54:02.605Z (3 months ago)
- Topics: angular, angularjs, cdd, component-driven-design, component-driven-development, component-library
- Language: HTML
- Homepage:
- Size: 618 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular-storybook
Storybook for Angular project.
## Quickstart
1. **Install the dependencies.**
Navigate into your new siteβs directory and install the necessary dependencies.
```shell
cd ~/path/to/angular-storybook && npm install
```2. **Open the source code and start editing**
Start developing components under the `src/stories` directory.
3. **Browse your stories**
Run `npm run storybook` to see your component's stories at `http://localhost:6006`.
## π Contents
.
βββ .storybook
βββ node_modules
βββ src
βββ .editorconfig
βββ .gitignore
βββ angular.json
βββ LICENSE
βββ package-lock.json
βββ package.json
βββ tsconfig.app.json
βββ tsconfig.json
βββ tsconfig.spec.json
βββ tslint.json
βββ README.md1. **`.storybook`**: This directory contains Storybook's [configuration](https://storybook.js.org/docs/react/configure/overview) files.
2. **`node_modules`**: This directory contains all of the modules of code that your project depends on (npm packages).
3. **`src`**: This directory will contain all of the code related to what you will see on your application.
4. **`.editorconfig`**: This file contains the configurations for [EditorConfig](https://editorconfig.org/).
5. **`.gitignore`**: This file tells git which files it should not track or maintain during the development process of your project.
6. **`angular.json`**: This file contains all the configurations required for your Angular project.
7. **`LICENSE`**: The template is licensed under the MIT licence.
8. **`package-lock.json`**: This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. **(Do not change it manually).**
9. **`package.json`**: Standard manifest file for Node.js projects, which typically includes project specific metadata (such as the project's name, the author among other information). It's based on this file that npm will know which packages are necessary to the project.
10. **`tsconfig.app.json`**: This file contains auxiliary configurations for your Angular project.
11. **`tsconfig.json`**: This file contains configurations the required configurations for TypeScript.
12. **`tsconfig.spec.json`**: This is a TypeScript configuration file aimed for application testing.