From a6b5280792442c5317e81fad7d9c0450ebe31968 Mon Sep 17 00:00:00 2001 From: Alanscut Date: Sat, 12 Oct 2019 11:50:51 +0800 Subject: [PATCH] add README --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d09a3d3 --- /dev/null +++ b/README.md @@ -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(); +``` +