1.1.0 β€’ Published 2 years ago

inpsirit-components v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

πŸš… Quick start

  1. Install the dependencies.

    Navigate into your new site’s directory and install the necessary dependencies.

    # Install the dependencies
    npm install
  2. Browse your stories!

    Run npm start to see your component's stories at http://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
  1. .storybook: This directory contains Storybook's configuration files.

  2. node_modules: This directory contains all of the modules of code that your project depends on (npm packages).

  3. public: This directory will contain the development and production build of the site.

  4. 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.

  5. .gitignore: This file tells git which files it should not track or maintain during the development process of your project.

  6. 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.

  7. README.md: A text file containing useful reference information about the project.