Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socketโs threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@convertkit/design
Advanced tools
Welcome to Kit's component library!
Here, you'll find the source and documentation for our @convertkit/design
package on npm. This readme provides more information on our development, review, and release processes.
Make sure you are on Node v14.19.2 or higher. You can use NVM to manage Node versions. To develop in this repo, navigate into its root directory and run:
yarn start
This will start a local server at localhost:6060. You'll also receive a URL that you can visit from other devices on your network, which can be helpful for testing your component on phones and tablets.
You can link a local version of this repo against the main app so you can see changes without having to publish this package.
The most complicated part about this is making sure that this package and the main app are using the same version of react.
In the main app, create a link to react
cd node_modules/react
yarn link
In this repo, run yarn link
In this repo, run yarn link react
In the main app, run yarn link "@convertkit/design"
In this repo, run yarn build
Now when using bin/webpack-dev-server
in the main app, it should compile a local version of this package instead of the published one.
If you need to use either a component or a hook inside of Node server-side renderering, make sure to add an entry point in
the exports
property in package.json
if it is not already covered by the substring matching pattern (such as modal/confirm
).
Components are located under src/components
. Each component has a directory structure that (generally) looks like this:
components/
example-component/ # directory names are all lowercase and use dashes for spaces
__tests__/
example-component.test.js # tests are included in a __tests__ directory
index.js # contains a default export for the component
readme.md # used for documentation
If needed, you can also add other files to this directory โ for instance, some components might need an assets
directory or utility files.
To preview a component during development, we recommend accessing it via its documentation. To learn more about this part, see "Tips for writing documentation" below.
Kit Design also provides hooks which are located in the src/hooks
directory. You can import these into the main app and use them to interact with components from the library.
For a concrete example, src/hooks/use-toast/index.js
provides a useToast()
hook as its default export. In the main app, we can import it with:
import useToast from "@convertkit/design/use-toast"
We use Styleguidist to generate Kit Design's documentation from the readme files located in each component directory.
React
; it's available at the global scope. However, named imports like useState
aren't. For these, it's easier to call things like React.useState
.index.js
file can be accessed in this file without any need to import it.```jsx noeditor
will show only the demo (no code).```jsx static
will show only the code (no demo).You can read up on more ways to document with Styleguidist here.
If you want to add documentation for something other than a component, you can use a "route" configuration inside styleguide.config.js
. After that, you can add a markdown file to the docs
directory.
The component library is used by engineers from every squad and across every part of the app. Because of this, we have a group of volunteer engineers, called "Component Librarians", to help facilitate code reviews.
To request a review on your PR, you can tag ConvertKit/component-librarians
from the "Reviewers" dropdown in GitHub. Several engineers will be randomly assigned to review your changes. You can use your best judgment on how many reviews you need before merging: if you're making a small update, you might only need one review; if you're making a bigger change (like updating an API, layout, or component functionality), a broader consensus should be reached before merging. This reduces the risk of a breaking change for another squad.
If your PR adjusts a component's design, we also recommend tagging ConvertKit/design
as a reviewer, and having at least one designer sign off on the changes.
If you're reviewing a PR, you can find a live preview of its changes under the "Checks" section at the bottom of the page. Look for the item that says:
netlify/convertkit-design/deploy-preview โ Deploy Preview ready!
You can click the "Details" link next to it to view a live preview.
@convertkit/design
to npm. This usually takes a few minutes; you can check its progress in the merge commit's status on GitHub, or refresh the package on npm to watch the "Last publish" date."@convertkit/design": "...",
and change its version number to the version you've just published. Save the file.yarn
to install the package from npm.@convertkit/design
on main, which helps us catch regressions early, and gives other engineers access to the most recent designs and APIs.If you want to test one of your PRs in the main app (or even put up an ephemeral environment for QA or Design), you can follow these instructions to release a beta version of the component library. In order to do this, you'll need to have an npm account and ask #frontend to invite you to the @convertkit
organization. Make sure to verify your email address, or publishing will silently fail!
In order to build and release, you will need rollup installed globally. If you don't have it, you can install it with yarn global add rollup
or npm install -g rollup
.
Run yarn release
.
A prompt will show you the current version number and ask for the new one. Bump the version and append "-beta". For example:
info Current version: 1.0.1
question New version: # you could enter 1.0.2-beta
If you're releasing multiple betas for your PR, you can also append a version number such as 1.0.2-beta.2
.
If successful, you'll see a success message in the terminal.
In the main app, update app/javascript/package.json
to use your new beta version for @convertkit/design
. For example:
"@convertkit/design": "1.0.2-beta",
In a terminal pointed at the main app, run yarn
. This will install the beta you just released to your local dev environment. Once you're ready to release to prod, you can follow the instructions in "Releasing to prod" above.
Component Librarians is a volunteer review group which helps facilitate reviews for this repo. Its goal is to make sure that each squad has a voice in changes to our component library, especially around its APIs and documentation. We also want to make sure that our designers are aware of, and in agreement on, the updates we're making. We'd love to have broad representation across all of our squads. If you're interested in joining, please let us know in #frontend
on Slack!
You can use this module in Node server-side rendering and browser environments.
For Webpack/Babel browser environments, note that each component is exported as a submodule, with the prefix /dist/, so to import a button:
import Button from "@convertkit/design/dist/button"
You can add a Babel rule to remove the necessity of specifying dist:
plugins: [
[
"module-resolver",
{
alias: {
"@convertkit/design": "@convertkit/design/dist"
}
}
]
]
You will also need to import "@convertkit/design/dist/styles"
either in SCSS or in your main JS component.
SCSS:
@import "node_modules/@convertkit/design/dist/styles";
JS:
import "@convertkit/design/styles"
FAQs
Kit Design
The npm package @convertkit/design receives a total of 642 weekly downloads. As such, @convertkit/design popularity was classified as not popular.
We found that @convertkit/design demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 0 open source maintainers 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.
Research
Security News
Socketโs threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.