
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@caedman/kit
Advanced tools
This guide defines a standard for the generation of components with Atomico, with the objective of facilitating the collaborative development, scalability and maintenance of its components.
# Create the necessary files for a component
npm run create-component
# For documentation Development.
# Useful to generate design system.
npm run start # start a server that serves the .md files
npm run build # optimize the associated code
# Individual export of components.
# Useful for sharing components using NPM.
npm run build:component # Does not include dependencies.
The directory distribution is an important element when building components, ideally, this is declarative in content, eg:
src
├───components
│ └───${my-component}
│ ${my-component}.js
│ ${my-component}.css
│ ${my-component}.md
└───custom-hooks
└───${my-hook}
${my-hook}.js
${my-hook}.md
It is ideal that as an author you define a name or prefix that grouped one or more components, always define after the main name the objective to be represented in the UI, eg:
# Naming
${name}-${objective}-...
# Single
atomico-button
atomico-input
# Group
atomico-header
atomico-header-nav
atomico-header-logo
atomico-header-social
The use of the atomic name is just an example, its use is not recommended for the declaration of the name of its component.
Webcomponents are ideal for the generation of transparent apis, allowing trabs of attributes/properties to manipulate or know the current state of the component.
<host/> as the return nodeuseProp if you are looking to manipulate the state of the prop and reflect this in the webcomponent as an attribute/property, keep using useState for private states.my-component [type="email"] or my-component[active]import { h, customElement, useProp } from "atomico";
import style from "./my-component.css";
/**
* @type {import("atomico").Component}
* @param {Object} props
* @param {string} props.type
* @param {value} props.value
*/
const MyComponent = ({ type }) => {
let [value, setValue] = useProp("value");
return (
<host shadowDom>
<style>{style}</style>
<input
type={type}
value={value}
oninput={({ target: { value } }) => setValue(value)}
></input>
</host>
);
};
MyComponent.props = {
type: {
type: String,
reflect: true,
options: ["number", "date", "email", "phone"],
value: "text"
},
value: {
type: String,
value: "default message"
}
};
export default customElement("my-component", MyComponent);
using this @type {import("atomico").Component} fragment in the jsdoc, import the autocomplete rules for Typescript, consider it optional.
FAQs
a repo to start with atomico
We found that @caedman/kit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.