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

@neuralpulse/neurosynth-ui

v2.0.1

Published

<p align="center"> <img src="./public/neuralsynth-ui-no-background-readme.png" alt="Logo do seu projeto" width="500"/> </p>

Downloads

1

Readme

NeuroSynthUI

MIT License

NeuroSynthUI is a modern React component library designed to provide developers with a set of pre-built components that can be used to create beautiful and functional user interfaces with ease.

Features

  • A comprehensive set of UI components
  • Built with React and TypeScript for robust applications
  • Fully customizable components
  • Storybook integration for component documentation and testing
  • Jest for unit testing

Getting Started

To get started with NeuroSynthUI, you need to have Node.js installed on your system. If you don't have Node.js installed, you can download it from nodejs.org.

Installation

You can install NeuroSynthUI in your project by running the following command:

npm i @neuralpulse/neurosynth-ui

or if you are using yarn:

yarn add @neuralpulse/neurosynth-ui

Usage

After installation, you can import and use the components in your React application:

import { Button, Modal } from 'neurosynth-ui';

function App() {
  return (
    <div>
      <Button label="Click Me" variant="primary" />
      <Modal isOpen={true} onClose={() => {}} title="Welcome">
        Hello, World!
      </Modal>
    </div>
  );
}

export default App;

Running Locally

To run the NeuroSynthUI locally for development, follow these steps:

  1. Clone the repository:
git clone https://github.com/your-username/neurosynth-ui.git
  1. Install the dependencies:
cd neurosynth-ui
npm install
  1. Start the development server:
npm run dev

This will start the Vite development server, and you can begin working on the components.

Storybook

NeuroSynthUI uses Storybook to showcase its components. To view the components in Storybook, run:

npm run storybook

This will start the Storybook server, and you can view the component stories by navigating to http://localhost:6006 in your browser.

Building for Production

To build the NeuroSynthUI library for production, run:

npm run build

This will generate the production build of the library in the dist directory.

Running Tests

NeuroSynthUI comes with Jest set up for testing. To run the tests, use:

npm test

To run tests in watch mode:

npm run test:watch

Linting

To ensure code quality and consistency, you can run the linter using:

npm run lint

Components

  • [x] Avatar: A graphical representation of the user, commonly used for profiles and user interfaces.
  • [x] Button: An interactive element that triggers actions when clicked by the user.
  • [x] Card: A flexible and extensible content container with multiple variants and options.
  • [x] Collapse: A component to show and hide content with a smooth animation, enhancing the UI's interactivity.
  • [x] DropdownMenu: A list of options that appears below a clickable element, allowing for additional actions related to an item.
  • [x] IssueCard: A visual summary of an issue, task, or feature that displays its status and other key details.
  • [x] List: A way to display a series of items as a single continuous element, often used for menus and grouped information.
  • [x] Modal: A dialog box/popup window that is displayed on top of the current page for critical user interactions.
  • [x] NestedList: A list with hierarchical items that can expand and collapse, providing a clear structure of the included content.
  • [x] README.md: A markdown file providing documentation about the project and its components.
  • [x] Select: A control that allows the user to choose one or multiple options from a dropdown list.
  • [x] TextField: An input field allowing the user to enter and edit text.
  • [x] Toolbar: The primary navigation bar, providing quick access to features and indicating the user's current context.
  • [x] Warning: A component to display alerts or warnings to the user, often used to highlight potential issues or important information.
  • [x] AppBar: For main navigation, quick access to features, and indication of the user's current context.
  • [x] Tabs: To toggle between different views or sections within the same context, like different panels of information in a project.
  • [x] Tooltip: Small informational messages that appear when hovering over an element, useful for explaining the function of buttons or other interface actions.
  • [x] ProgressBar / Loader: To display the progress of a task or the loading of information, improving user experience during wait times.
  • [x] Table: A listing of items with multiple columns, essential for visualizing large amounts of data, such as tickets, tasks, or reports.
  • [x] Pagination: A component for page-by-page navigation, especially useful in tables with lots of data.
  • [x] Breadcrumbs: To show the navigation path within the application and facilitate returning to previous points.
  • [x] Tag / Chip: For labeling categories, statuses, people, or any other form of compact and visual metadata.
  • [x] Dialog / Confirm: Dialogue boxes to confirm critical user actions, such as data deletion or significant changes.
  • [x] DatePicker: Fundamental for setting deadlines, marking events, and other functionalities related to time.
  • [x] TimePicker: Similar to the date picker, but for specific times, useful for precise scheduling.
  • [x] Accordion: To expand and collapse content sections, keeping the interface clean and organized.
  • [x] Timeline: Shows a timeline of events, change history, or task progress.
  • [x] Sidebar: A side menu that can contain navigation, filters, or additional information.
  • [x] Snackbar / Toast: For temporary and informative messages that do not require user action to disappear.
  • [x] EmptyState: A visual representation for when there's no data to display, with instructions or actions for the user.
  • [x] Stepper: For step-by-step processes, like setup wizards or project creation.
  • [x] KanbanBoard: A draggable component for visualizing tasks in Kanban style, useful for agile project management.

Contributing

Contributions to NeuroSynthUI are always welcome. Please read the contributing guidelines before making any changes or opening a pull request.

License

The MIT License (MIT)