From bfde4226ecb1be695168610d801a81a816d744cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCller?= Date: Wed, 7 Aug 2019 12:01:52 +0200 Subject: [PATCH] Update Getting Started.md storm-react-diagrams to @projectstorm/react-diagrams --- docs/Getting Started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Getting Started.md b/docs/Getting Started.md index 96f7b70..908df7a 100644 --- a/docs/Getting Started.md +++ b/docs/Getting Started.md @@ -7,13 +7,13 @@ The first thing you need to do, is grab the distribution files on NPM. You can d **Via yarn:** ``` -yarn add storm-react-diagrams +yarn add @projectstorm/react-diagrams ``` **Via npm:** ``` -npm install storm-react-diagrams +npm install @projectstorm/react-diagrams ``` When you run this in your project directory, this will install the library into node\_modules/storm-react-diagrams. You will then find a dist folder that contains all the minified and production ready code. @@ -29,13 +29,13 @@ When including the library you will need both the javascript files as well as th **Using Typescript / ES6: \(recommended\)** ```js -import * as SRD from "storm-react-diagrams" +import * as SRD from "@projectstorm/react-diagrams" ``` **Using RequireJS:** ```js -var SRD = require("storm-react-diagrams) +var SRD = require("@projectstorm/react-diagrams") ``` **As a script tag \(not recommended\)**