Skip to content

Instantly share code, notes, and snippets.

@h2non
Last active December 29, 2015 13:29
Show Gist options
  • Save h2non/7677707 to your computer and use it in GitHub Desktop.
Save h2non/7677707 to your computer and use it in GitHub Desktop.
Web Component general purpose organization layout structure
component
├── src
│   ├── scripts
│   │   ├── module.js
│   │   ├── services
│   │   │   └── cache.js
│   │   ├── directives
│   │   │   └── login.js
│   │   └── filters
│   │       └── currency.js
│   ├── scss
│   └── jade
├── images
├── fonts
├── demo
│   ├── scripts
│   ├── scss
│   └── jade
├── dist
│   ├── component.js
│   ├── component.min.js
│   ├── css
│   └── html
└── test
    ├── unit
    │   ├── services
    │   ├── directives
    │   └── filters
    └── e2e
        └── scenario
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment