Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4eb44a1

Browse files
committedJun 20, 2017
reorganize info
1 parent 96cae60 commit 4eb44a1

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed
 

‎.verb.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -26,49 +26,49 @@ Visit toolkit.io (coming soon) for more information.
2626
Tookit applications are organized into the following categories:
2727

2828
1. [building blocks](#building-blocks)
29-
1. [lifecycle](#lifecycle)
3029
1. [configuration](#configuration)
30+
1. [lifecycle](#lifecycle)
3131
1. [automation](#automation)
3232

3333

3434
### Building blocks
3535

3636
Create an "instant API" for your node.js application. These "building blocks" are used as
3737

38-
* [base][]: Bare-bones starting point for creating a high quality node.js application. Build out your API by using plugins like building blocks. All of other the applications in the toolkit suite were created using Base.
39-
* [templates][]: System for creating and managing template collections, and rendering templates with any node.js template engine. Can be used as the basis for creating a static site generator, blog framework, documentaton system, and so on.
38+
- [base][]: Bare-bones starting point for creating a high quality node.js application. Build out your API by using plugins like building blocks. All of other the applications in the toolkit suite were created using Base.
39+
- [templates][]: System for creating and managing template collections, and rendering templates with any node.js template engine. Can be used as the basis for creating a static site generator, blog framework, documentaton system, and so on.
4040

4141

42-
### Lifecycle
42+
### Configuration
4343

44-
Developer frameworks and command line tools that address common phases of the software development lifecycle. Each of these tools can be used standalone, but they work even better together.
44+
Tools and conventions for defining, using and publishing declarative configurations for projects, components and templates.
4545

4646
**Tools**
4747

48-
1. [generate][]: create projects
49-
1. [assemble][]: build projects
50-
1. [verb][]: document projects
51-
1. [update][]: maintain projects
48+
- [boilerplate][]: Describes all of the necessary files, templates and settings required to initialize a complete, new project.
49+
- [scaffold][]: Describes all of the necessary files, templates and settings required to initialize a complete, new project.
50+
- [snippet][]: Tools and conventions for creating, using and publishing invidual snippets of code or text.
5251

52+
**Synopsis**
5353

54-
### Configuration
54+
By keeping a separation of concerns between configuration and everything else (application logic, flow control, etc), we can use _plain, generic javascript, with prescriptive conventions to describe commonly needed objects, files, templates, and assets_.
5555

56-
Tools and conventions for defining, using and publishing declarative configurations for projects, components and templates.
56+
As a result, projects are lower complexity, easier to maintain, and the objects can be passed around to any rendering engine, build system, scaffolding tool or project generator when its time to create or build something.
5757

58-
**Tools**
5958

60-
1. [boilerplate][]: Describes all of the necessary files, templates and settings required to initialize a complete, new project.
61-
1. [scaffold][]: Describes all of the necessary files, templates and settings required to initialize a complete, new project.
62-
1. [snippet][]: Tools and conventions for creating, using and publishing invidual snippets of code or text.
59+
### Lifecycle
6360

64-
**Advantages**
61+
Developer frameworks and command line tools that address common phases of the software development lifecycle. Each of these tools can be used standalone, but they work even better together.
6562

66-
By keeping a separation of concerns between configuration and everything else (application logic, flow control, etc), we can use plain, generic javascript, with prescriptive conventions to describe commonly needed objects, files, templates, and assets.
63+
**Tools**
6764

68-
As a result, projects are lower complexity, easier to maintain, and the objects can be passed around to any rendering engine, build system or project generator when its time to create something.
65+
- [generate][]: scaffold out new projects
66+
- [assemble][]: build projects
67+
- [verb][]: document projects
6968

7069

7170
### Automation
7271

73-
1. [enquirer][]: Plugin-based prompt system, to automate interactions and conversations with your users throughout the developer lifecycle.
74-
1. [microbot][]: Empower your applications and users with automated responses, actions and notifications throughout the developer lifecycle.
72+
- [enquirer][]: Plugin-based prompt system, to automate interactions and conversations with users.
73+
- [microbot][]: Empower your applications and users with automated responses, actions and notifications.
74+
- [update][]: Automate updates for virtually any aspect of a project.

‎README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Visit toolkit.io (coming soon) for more information.
2525
Tookit applications are organized into the following categories:
2626

2727
1. [building blocks](#building-blocks)
28-
2. [lifecycle](#lifecycle)
29-
3. [configuration](#configuration)
28+
2. [configuration](#configuration)
29+
3. [lifecycle](#lifecycle)
3030
4. [automation](#automation)
3131

3232
### Building blocks
@@ -36,37 +36,37 @@ Create an "instant API" for your node.js application. These "building blocks" ar
3636
* [base](https://github.com/node-base/base): Bare-bones starting point for creating a high quality node.js application. Build out your API by using plugins like building blocks. All of other the applications in the toolkit suite were created using Base.
3737
* [templates](https://github.com/jonschlinkert/templates): System for creating and managing template collections, and rendering templates with any node.js template engine. Can be used as the basis for creating a static site generator, blog framework, documentaton system, and so on.
3838

39-
### Lifecycle
39+
### Configuration
4040

41-
Developer frameworks and command line tools that address common phases of the software development lifecycle. Each of these tools can be used standalone, but they work even better together.
41+
Tools and conventions for defining, using and publishing declarative configurations for projects, components and templates.
4242

4343
**Tools**
4444

45-
1. [generate](https://github.com/generate/generate): create projects
46-
2. [assemble](https://github.com/assemble/assemble): build projects
47-
3. [verb](https://github.com/verbose/verb): document projects
48-
4. [update](https://github.com/update/update): maintain projects
45+
* [boilerplate](https://github.com/jonschlinkert/boilerplate): Describes all of the necessary files, templates and settings required to initialize a complete, new project.
46+
* [scaffold](https://github.com/jonschlinkert/scaffold): Describes all of the necessary files, templates and settings required to initialize a complete, new project.
47+
* [snippet](https://github.com/jonschlinkert/snippet): Tools and conventions for creating, using and publishing invidual snippets of code or text.
4948

50-
### Configuration
49+
**Synopsis**
5150

52-
Tools and conventions for defining, using and publishing declarative configurations for projects, components and templates.
51+
By keeping a separation of concerns between configuration and everything else (application logic, flow control, etc), we can use _plain, generic javascript, with prescriptive conventions to describe commonly needed objects, files, templates, and assets_.
5352

54-
**Tools**
53+
As a result, projects are lower complexity, easier to maintain, and the objects can be passed around to any rendering engine, build system, scaffolding tool or project generator when its time to create or build something.
5554

56-
1. [boilerplate](https://github.com/jonschlinkert/boilerplate): Describes all of the necessary files, templates and settings required to initialize a complete, new project.
57-
2. [scaffold](https://github.com/jonschlinkert/scaffold): Describes all of the necessary files, templates and settings required to initialize a complete, new project.
58-
3. [snippet](https://github.com/jonschlinkert/snippet): Tools and conventions for creating, using and publishing invidual snippets of code or text.
55+
### Lifecycle
5956

60-
**Advantages**
57+
Developer frameworks and command line tools that address common phases of the software development lifecycle. Each of these tools can be used standalone, but they work even better together.
6158

62-
By keeping a separation of concerns between configuration and everything else (application logic, flow control, etc), we can use plain, generic javascript, with prescriptive conventions to describe commonly needed objects, files, templates, and assets.
59+
**Tools**
6360

64-
As a result, projects are lower complexity, easier to maintain, and the objects can be passed around to any rendering engine, build system or project generator when its time to create something.
61+
* [generate](https://github.com/generate/generate): scaffold out new projects
62+
* [assemble](https://github.com/assemble/assemble): build projects
63+
* [verb](https://github.com/verbose/verb): document projects
6564

6665
### Automation
6766

68-
1. [enquirer](http://enquirer.io): Plugin-based prompt system, to automate interactions and conversations with your users throughout the developer lifecycle.
69-
2. [microbot](https://github.com/microbot/microbot): Empower your applications and users with automated responses, actions and notifications throughout the developer lifecycle.
67+
* [enquirer](http://enquirer.io): Plugin-based prompt system, to automate interactions and conversations with users.
68+
* [microbot](https://github.com/microbot/microbot): Empower your applications and users with automated responses, actions and notifications.
69+
* [update](https://github.com/update/update): Automate updates for virtually any aspect of a project.
7070

7171
## Author
7272

@@ -82,4 +82,4 @@ Released under the [MIT License](LICENSE).
8282

8383
***
8484

85-
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 01, 2017._
85+
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 20, 2017._

0 commit comments

Comments
 (0)
reorganize info · node-toolkit/toolkit@4eb44a1 · GitHub