Yeoman Generator for Atomic-Design with Pug, Less and BabelJS. Integrated Galen for easy Layout-Tests.
npm install generator-atomicThis Yeoman generator scaffolds an atomic-design templating framework based on the markup language Pug.
It comes bundled with BabelJS for ES6 support, Twitter Bootstrap, LESS or SCSS, ESLint and a build-in Livereload Server.
Several Subgenerators (atom, molecule, organism...) help you during your project to quickly add new modules and link them properly.
Grunt helps you to automate your workflow with several helpful tasks like "build", "release" and "serve" (default). For automated Layout-testing you can use the Galen Framework.
``bash`
npm install -g yo
To install generator-atomic from npm, run:
`bash`
npm install -g generator-atomic
Initiate the generator in your project folder:
`bash`
yo atomic
To generate modules use following commands in your project folder:
`bash`
yo atomic:atom
`bash`
yo atomic:molecule
`bash`
yo atomic:organism
`bash`
yo atomic:template
`bash`
yo atomic:page
.: Serve a production Build.$3
Build the (optimized for production) code into /dist.$3
Build, Serve and run Layout-Tests with Galen.$3
Create a Release of the Project (bump and tag).|Tasks| Description
|---------|-------
|
grunt release:patch | Create a patch release of the Project.
| grunt release:minor | Create a minor release of the Project.
| grunt release:mayor | Create a mayor release of the Project.$3
`
├── □ app
| ├── □ 0_basics
| | ├── _default.pug # HTML Mastertemplate (HTML Header/Footer)
| | ├── controller.js # Javascript Main Controller
| | ├── basics.yaml # Content YAML
| | ├── main.scss # Stylesheet-file for Module imports
| | ├── variables.scss # Stylesheet Variables
| | ├── nojs.scss # Fallback CSS for Browsers without JS
| | ├── ie9.scss # Fallback CSS for IE9
| | └── □ nx helpers # Less Helper Classes
| ├── □ 1_atoms # Folder for Atoms
| ├── □ 2_molecules # Folder for Molecules
| ├── □ 3_organisms # Folder for Organisms
| ├── □ 4_templates # Folder for Templates
| └── □ 5_pages # Folder for Pages
| └── □ nx # Folder for nx-navigation, only if navigation is chosen
`$3
Each Module (atom, molecule, organism...) has this Directory Layout:
`
| | ├── index.pug # Module Overview Page
| | └── □ breadcrumb
| | ├── breadcrumb.pug # Demo: showcase the Module in all available versions
| | ├── _breadcrumb.pug # Markup: Pug Mixins (with _underscore)
| | ├── breadcrumb.js # Script: ES2015 through BabelJS (not in atoms, templates and pages)
| | ├── breadcrumb.unit.js # Unit-Test: Karma/Jasmine Unit Test
| | ├── breadcrumb.scss # Stylesheet
| | ├── breadcrumb.spec # Test: Galen Specfile for Layout Tests
| | └── breadcrumb.yaml # Content Model for this module
`Optional Navigation
While initiating your project you can choose a toggleable navigation to navigate convenient through your atomic patterns.$3
Per default the nexum logo is shown in the navigation but you can add a your own logo path in the basics.yaml.`
├── □ app
| ├── □ 0_basics
└── basics.yaml # Content YAML
`Note for Windows-Users:
Windows Users with npm3/node5 should use the Microsoft PowerShell.
The Standard-Shell has Problems with the prompts.Contributing
You can contribute by
* Issue submission
* writing Unit Tests
* providing Bugfixes
Please use the Angular Commit Message Format for easier Changelog generation.
Pull Request Guidelines
* Please check to make sure that there aren't existing pull requests attempting to address the issue mentioned. We also recommend checking for issues related to the issue on the tracker, as a team member may be working on the issue in a branch or fork.
* Non-trivial changes should be discussed in an issue first
* Develop in a topic branch, not master
* Add relevant tests to cover the change
* Make sure test-suite passes:
npm test`
Thank you for your time, we appreciate it.
MIT Licence
Copyright © 2015 Michael Seel, nexum AG
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.