Skip to content

Commit a6b5280

Browse files
committed
add README
1 parent ba01f98 commit a6b5280

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# crypto-js [![Build Status](https://travis-ci.org/brix/crypto-js.svg?branch=develop)](https://travis-ci.org/brix/crypto-js)
2+
3+
JavaScript library of crypto standards.
4+
5+
## Node.js (Install)
6+
7+
Requirements:
8+
9+
- Node.js
10+
- npm (Node.js package manager)
11+
12+
```bash
13+
npm install crypto-js
14+
```
15+
16+
### Usage
17+
18+
Including all libraries, for access to extra methods:
19+
20+
```javascript
21+
import CryptoJS from 'crypto-js';
22+
const rst = CryptoJS.MD5("Message").toString();
23+
```
24+

0 commit comments

Comments
 (0)