inpsirit-components v1.1.0
π Quick start
Install the dependencies.
Navigate into your new siteβs directory and install the necessary dependencies.
# Install the dependencies npm install
Browse your stories!
Run
npm start
to see your component's stories athttp://localhost:6006
π What's inside?
A quick look at the top-level files and directories included with this template.
.
βββ .storybook
βββ node_modules
βββ public
βββ src
|ββ components
|ββ stories
βββ .gitignore
βββ LICENSE
βββ package.json
βββ README.md
.storybook
: This directory contains Storybook's configuration files.node_modules
: This directory contains all of the modules of code that your project depends on (npm packages).public
: This directory will contain the development and production build of the site.src
: This directory will contain all of the code related to what you will see on your application.a.
components
: This directory will contain all of the components related to what you will see on your application.b.
stories
: This directory will contain all of the stories related to what you will see on your application..gitignore
: This file tells git which files it should not track or maintain during the development process of your project.package.json
: Standard manifest file for Node.js projects, which typically includes project specific metadata (such as the project's name, the author among other information). It's based on this file that npm will know which packages are necessary to the project.README.md
: A text file containing useful reference information about the project.
2 years ago