Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@guardian/atoms-rendering

Package Overview
Dependencies
Maintainers
30
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@guardian/atoms-rendering

## What is an Atom?

  • 1.3.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-96.77%
Maintainers
30
Weekly downloads
 
Created
Source

Atoms Rendering

What is an Atom?

An Atom is a self contained piece of content that can be inserted into multiple articles. There are several different types of atoms, this repository aims to document them all.

Why are they here?

Mainly so we can share this code cross platform, but also to create one location where atoms are listed, typed and defined.

Usage

To import an atom in your project use yarn add @guardian/atoms-rendering then

import { TheAtomYouWant } from '@guardian/atoms-rendering';

<TheAtomYouWant someProp={localData.someProp} />

Running locally

git clone https://github.com/guardian/atoms-rendering.git
// or
git clone git@github.com:guardian/atoms-rendering.git
nvm use
yarn
yarn storybook

also

yarn link // so you don't need to publish to test changes remotely

and then

    "scripts": {
        "build": "microbundle --jsx React.createElement",
        "dev": "microbundle watch --jsx React.createElement",
        "storybook": "start-storybook -p 6006",
        "build-storybook": "build-storybook",
        "tsc": "tsc",
        "lint": "eslint . --ext .ts",
        "test": "jest --watch"
    }

How do you add a new atom to this repo?

Adding a new atom in atoms-rendering involves

  1. Adding the component, eg. MyComponent.tsx
  2. Adding stories, eg. MyComponent.stories.tsx
  3. Adding a line to index.ts to export the component
  4. Publishing a new version of the library to Npm (see below)

Publishing

Manual publishing steps:

  1. Ensure your changes are on master
  2. Ensure you have an Npm account that is authorised for the Npm @guardian organisation
  3. yarn build
  4. Create a branch, yourname/v1.0.1
  5. yarn publish (enter new version number, eg. 1.0.1)
  6. Create a PR for the version
  7. Then, in the consuming project, update the version of @guardian/atoms-rendering installed to see the changes

FAQs

Package last updated on 29 May 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc