npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@truehome-tech/common-components

v0.5.22

Published

Landing Components is the new initiative to create, manage and maintain reusable React components used in Loft México projects, and its purpose is to replace the old [TrueHome UI components library](https://dev.azure.com/truehome-holdings/WebApp/_git/th-u

Downloads

57

Readme

Getting Started with Landing Components

Landing Components is the new initiative to create, manage and maintain reusable React components used in Loft México projects, and its purpose is to replace the old TrueHome UI components library.

<WIP: Add official Story Book documentation environment link here>

Installation

Install library dependencies:

npm i @truehome-assets/loft-ui

Contributing

To contribute new components, or fix errors in the existing ones, you need to open a pull request into the official Landing Components repository.

If you don't know how to make your first contribution, follow the next steps:

Run Project Locally

Clone project repository to your local:

git clone https://[email protected]/truehome-holdings/Core/_git/landing-components

Install project dependencies:

npm install

Run project locally:

npm start

Now you can start developing your contribution.

Running Unit Tests

To run the project's unit tests, execute the command:

npm run test

Contribution Guidelines

For your contribution to be accepted, be sure to cover all this requirements:

  1. Follow the existing code's format. Be sure to have prettier extension enabled before making your contribution.
  2. Follow the existing project files structure. Don't leave files everywhere or create new folders that don't fit into the existing structure.
  3. Add unit tests or modify the existing ones to cover all the acceptance criteria of the components to ensure its code quality.
  4. Follow project's coding guidelines. Take a look to the Airbnb JavaScript Style guide.

Opening a Pull Request

Before pushing your contribution to a remote branch, be sure that your branch's name indicates what kind of contribution you are making:

  • fix/<fix-name>. Contributions that fix existing errors in components that aren't in a production environment.
  • hotfix/<hot-fix-name>. Contributions that fix errors in components that are in a production environment.
  • feat/<feat-name>. Contributions that add a new component.

Once your branch is named correctly, and you are sure you have covered all the contribution guidelines, you are now ready to open the pull request.

Please, try to be very specific and detailed at your pull request's description. Reviewing a pull request is a difficult process where posible fixes and improvements are catched.

Now that your pull request is opened, it will be reviewed by the project administrator and moderator, and you will receive feedback if some modifications or improvements needs to be made to your contribution.