From fe6f6f53e559c1099b5912c5d8b738340f402e34 Mon Sep 17 00:00:00 2001 From: Mirko Schubert Date: Sun, 27 May 2018 19:50:30 +0200 Subject: [PATCH] renaming process --- README.md | 22 +++++++++++----------- package.json | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index bab2a54..367a0da 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -

GDPR Check

+

GDPR CLI

- - + +

@@ -12,28 +12,28 @@ --- -**GDPR Check** is a easy-to-use command line tool for checking any given website for GDPR compliance. Since it is based on Node.js, the application is browser- and OS-independant. For everyone, who hasn't installed Node.js, I have planned to publish a pre-installed Package für macOS and Windows as well. +**GDPR CLI** is a easy-to-use command line tool for checking any given website for GDPR compliance. Since it is based on Node.js, the application is browser- and OS-independant. For everyone, who hasn't installed Node.js, I have planned to publish a pre-installed Package für macOS and Windows as well. This command line tool scrapes a website for HTML-, CSS- and JavaScript-Files and tries to detect code, which is possibly sending personal data to other services, such as Google, Facebook, Instagram, WordPress and many more. ### Warning -This software is still in early alpha, so please use it at your own risk! If you find a bug or software incompability, please report it immediately by opening a ticket in the [Issues Section](https://github.com/mirkoschubert/gdpr-check/issues). If you are familiar with Node.js and JavaScript programming, feel free to contribute by forking and/ or sending pull requests. +This software is still in early alpha, so please use it at your own risk! If you find a bug or software incompability, please report it immediately by opening a ticket in the [Issues Section](https://github.com/mirkoschubert/gdpr-cli/issues). If you are familiar with Node.js and JavaScript programming, feel free to contribute by forking and/ or sending pull requests. -Neither I nor this program are giving any legal advice. **GDPR Check** can not assist you with your website administration or the preperation of legal documents such as an imprint or a privacy notice. It simply helps you by (unobtrusively) revealing possible security flaws, which could affect the data securitiy of any visitor of your website. For more information please consult your lawyer. +Neither I nor this program are giving any legal advice. **GDPR CLI** can not assist you with your website administration or the preperation of legal documents such as an imprint or a privacy notice. It simply helps you by (unobtrusively) revealing possible security flaws, which could affect the data securitiy of any visitor of your website. For more information please consult your lawyer. ### Installation -For installing **GDPR Check** you need to have [node.js](https://nodejs.org/en/) and a package manager such as [npm](https://www.npmjs.com) or [yarn](https://yarnpkg.com/en/) already installed. If you use `npm`, you can install this package with the following command: +For installing **GDPR CLI** you need to have [node.js](https://nodejs.org/en/) and a package manager such as [npm](https://www.npmjs.com) or [yarn](https://yarnpkg.com/en/) already installed. If you use `npm`, you can install this package with the following command: ``` -npm install -g gdpr-check +npm install -g gdpr-cli ``` With `yarn` it is just as easy as that: ``` -yarn global add gdpr-check +yarn global add gdpr-cli ``` That's all - have fun! @@ -62,7 +62,7 @@ There are some options already, but they still need some improvement. I will upd * [ ] FontAwesome * [x] Local Fonts * [x] Check for DNS Prefetching -* [ ] Check for Analytics Tools +* [x] Check for Analytics Tools * [x] Google Analytics * [x] Google Tag Manager * [x] Matomo / Piwik @@ -83,4 +83,4 @@ There are some options already, but they still need some improvement. I will upd ### Contribution -Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/mirkoschubert/gdpr-check/issues). +Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/mirkoschubert/gdpr-cli/issues). diff --git a/package.json b/package.json index 661abc2..04b6038 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "gdpr-check", + "name": "gdpr-cli", "version": "0.3.0", "description": "Checks websites for GDPR compliance", "main": "index.js",