beautiful-text 0.0.1-security → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of beautiful-text might be problematic. Click here for more details.
- package/History.md +0 -0
- package/Makefile +11 -0
- package/Readme.md +40 -0
- package/component.js +1 -0
- package/component.json +15 -0
- package/index.js +1 -0
- package/lib/Palette.js +743 -0
- package/lib/browser-console.js +38 -0
- package/lib/misc.js +1060 -0
- package/lib/progressBar.js +837 -0
- package/lib/terminal-console.js +41 -0
- package/lib/termkit.js +275 -0
- package/package.json +13 -3
- package/start.json +14 -0
- package/test/color-console.js +11 -0
- package/test/index.jade +5 -0
- package/test/layout/default.jade +14 -0
- package/README.md +0 -5
package/History.md
ADDED
File without changes
|
package/Makefile
ADDED
package/Readme.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
beautiful-text
|
2
|
+
==========
|
3
|
+
|
4
|
+
Print colorful text in console
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
npm
|
8
|
+
```bash
|
9
|
+
npm install beautiful-text
|
10
|
+
```
|
11
|
+
|
12
|
+
component
|
13
|
+
```bash
|
14
|
+
component install shallker/beautiful-text
|
15
|
+
```
|
16
|
+
|
17
|
+
## Quick Start
|
18
|
+
```javascript
|
19
|
+
var colorConsole = require('beautiful-text');
|
20
|
+
|
21
|
+
colorConsole.red('you should see red text');
|
22
|
+
colorConsole.green('you should see green text');
|
23
|
+
```
|
24
|
+
|
25
|
+
## API
|
26
|
+
### colorConsole
|
27
|
+
#### .black(String text)
|
28
|
+
#### .red(String text)
|
29
|
+
#### .green(String text)
|
30
|
+
#### .yellow(String text)
|
31
|
+
#### .blue(String text)
|
32
|
+
#### .magenta(String text)
|
33
|
+
#### .cyan(String text)
|
34
|
+
#### .white(String text)
|
35
|
+
#### .grey(String text)
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
MIT
|
package/component.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require('./lib/browser-console');
|
package/component.json
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
{
|
2
|
+
"name": "beautiful-text",
|
3
|
+
"repo": "thomas_flores/beautiful-text",
|
4
|
+
"description": "Print colorful text in console",
|
5
|
+
"version": "0.0.1",
|
6
|
+
"keywords": [],
|
7
|
+
"dependencies": {},
|
8
|
+
"development": {},
|
9
|
+
"license": "MIT",
|
10
|
+
"main": "component.js",
|
11
|
+
"scripts": [
|
12
|
+
"component.js",
|
13
|
+
"lib/browser-console.js"
|
14
|
+
]
|
15
|
+
}
|
package/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require('./lib/terminal-console');
|