Skip to content

UpperCod/example-atomico-mui

Repository files navigation

Atomico Atomico

Hi, I'm @uppercod, creator of Atomico and I want to thank you for starting with Atomico.

If you need help you can find it at:

twitter discord documentation discord

Now what you have installed is a quick start kit based on Vite, which you can scale for your project, now to continue you must execute the following commands:

  1. npm install
  2. npm start : Initialize the development server
  3. npm build : Optional, Generate a build of your project from the html file index.html.

Workspace

Notas example-atomico-mui

I have modified the environment by adding:

  1. package.json#postcss, thus allowing to import stylesheets from node_modules.

Recommended structure

site
src
  |- my-component
  |  |- my-component.{js,jsx,ts,tsx}
  |  |- my-component.test.js
  |  |- my-component.css
  |  |- README.md
  |- components.js # import all components

Add testing

The test environment is preconfigured for @web/test-runner, you must complete the installation of the following devDependencies, installed the devDependencies you can execute the command npm run test:

npm install -D @web/test-runner @esm-bundle/chai vite-web-test-runner-plugin

Test example

import { expect } from "@esm-bundle/chai";

describe("my test", () => {
  it("foo is bar", () => {
    expect("foo").to.equal("bar");
  });
});

@web/test-runner supports asynchrony, coverage, viewport and more.

NPM export

Atomico owns the @atomico/exports tool that simplifies the generation of builds, types and exports by distributing webcomponents in NPM, you must complete the installation of the following devDependencies, installed the devDependencies you can execute the command npm run exports:

npm install -D @atomico/exports