Skip to content

Commit

Permalink
add README
Browse files Browse the repository at this point in the history
Alanscut committed Oct 12, 2019
1 parent ba01f98 commit a6b5280
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# crypto-js [![Build Status](https://travis-ci.org/brix/crypto-js.svg?branch=develop)](https://travis-ci.org/brix/crypto-js)

JavaScript library of crypto standards.

## Node.js (Install)

Requirements:

- Node.js
- npm (Node.js package manager)

```bash
npm install crypto-js
```

### Usage

Including all libraries, for access to extra methods:

```javascript
import CryptoJS from 'crypto-js';
const rst = CryptoJS.MD5("Message").toString();
```

0 comments on commit a6b5280

Please sign in to comment.