diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..e2e9b6b
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,27 @@
+## Run the Dev Server
+
+```bash
+# clone this repository
+git clone git@github.com:microlinkhq/react-json-view.git && cd react-json-view
+# install dependencies
+npm install --save-dev
+# run the dev server with hot reloading
+npm run dev
+```
+Webpack Dev Server should automatically open up http://localhost:2000 in your web browser. If it does not, open a browser and navigate to port 2000. The hot reloader will automatically reload when files are modified in the `/src/` directory.
+
+## Run the Production Build
+
+```bash
+# run the build (note: you may need to use `sudo` priveledges to run the build successfully)
+npm run build
+```
+Please add tests for your code before posting a pull request.
+
+You can run the test suite with `npm run test` or `npm run test:watch` to automatically reload when files are modified.
+
+## Docker Tools
+
+I recommend using docker for development because it enforces environmental consistency.
+
+For information about contributing with Docker, see the [README in ./docker](https://github.com/microlinkhq/react-json-view/blob/master/docker/README.md#contributing-to-this-project-using-docker).
\ No newline at end of file
diff --git a/README.md b/README.md
index 131ffc0..f65eca8 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,14 @@
-
+
-[](https://www.npmjs.com/package/react-json-view) [](https://github.com/mac-s-g/react-json-view/blob/master/LISCENSE) [](https://travis-ci.org/mac-s-g/react-json-view) [](https://coveralls.io/github/mac-s-g/react-json-view?branch=master)
+[](https://www.npmjs.com/package/@microlink/react-json-view) [](https://github.com/microlinkhq/react-json-view/blob/master/LICENSE) [](https://github.com/microlinkhq/react-json-view/actions/workflows/main.yml?query=branch%3Amaster)
# react-json-view
RJV is a React component for displaying and editing javascript **arrays** and **JSON objects**.
This component provides a responsive interface for displaying arrays or JSON in a web browser. NPM offers a distribution of the source that's transpiled to ES5; so you can include this component with *any web-based javascript application*.
-[Check out the Interactive Demo](https://mac-s-g.github.io/react-json-view/demo/dist/)
+[Check out the Interactive Demo](https://react-json-view.microlink.io/)
### Implementation Example
@@ -21,9 +22,9 @@ import ReactJson from '@microlink/react-json-view'
### Output Examples
#### Default Theme
-
+
#### Hopscotch Theme, with Triangle Icons:
-
+
### Installation Instructions
Install this component with [NPM](https://www.npmjs.com/package/@microlink/react-json-view).
@@ -42,7 +43,7 @@ Name|Type|Default|Description
|:---|:---|:---|:---
`src`|`JSON Object`|None|This property contains your input JSON
`name`|`string`|`JSX.Element` or `false`|"root"|Contains the name of your root node. Use `null` or `false` for no name.
-`theme`|`string`|"rjv-default"|RJV supports base-16 themes. Check out the list of supported themes [in the demo](https://mac-s-g.github.io/react-json-view/demo/dist/). A custom "rjv-default" theme applies by default.
+`theme`|`string`|"rjv-default"|RJV supports base-16 themes. Check out the list of supported themes [in the demo](https://react-json-view.microlink.io/). A custom "rjv-default" theme applies by default.
`style`|`object`|`{}`|Style attributes for react-json-view container. Explicit style attributes will override attributes provided by a theme.
`iconStyle`|`string`|"circle"| Style of expand/collapse icons. Accepted values are "circle", triangle" or "square".
`indentWidth`|`integer`|4|Set the indent-width for nested objects
@@ -83,18 +84,18 @@ You can specify a `theme` name or object when you instantiate your rjv component
```jsx