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

@openfun/verna

v1.0.0-beta.1

Published

An extensible form builder based on React JSON Schema Form.

Downloads

1

Readme

Verna

CircleCI npm version

An extensible form builder based on React JSON Schema Form.

Demos

To demonstrate verna capabilities, we developed several use case examples.

Overview

Verna is a React component to build forms that generates a JSON Schema description of the form as output. The form can then be rendered with the React JSON Schema Form library, which makes it fully extensible to fit your needs.

Quick preview

You can check examples available within the examples folder. Take a loot at the README.md file in each example then follow instructions to run it.

Instructions

Install in our project

  yarn add -E @openfun/verna

Test or contribute to the project

  # -- Clone repository
  git clone https://github.com/openfun/verna.git
  cd verna
  
  # -- Install dependencies
  yarn install
  
  # -- Run dev server
  yarn dev

You should now be able to access the playground example from http://localhost:5173

Project structure (Yarn workspaces)

This repository is a monorepo based on Yarn workspace to organize code. Workspaces are located in two directories lib and examples. You can get info on all existing workspace through yarn workspaces info command. In lib, there is the @openfun/verna workspace that is the project itself which will be published on npm then the examples directory aims to contain all the examples to demonstrate feature of Verna.

Scripts

Through Yarn workspace, you are able to launch main commands from the root of this repository. Here are the available commands:

  • yarn build: Build the @openfun/verna library for production.
  • yarn dev: Build and watch @openfun/verna library then start development server from the example workspace define through the environment variable VERNA_EXAMPLE (by default it uses verna-examples-playground, take a look at examples directory to see all examples available)
  • yarn lint: Lint the code of all workspaces.
  • yarn test: Run test suites from @openfun/verna workspace.

Contributing

This project is intended to be community-driven, so please, do not hesitate to get in touch if you have any question related to our implementation or design decisions.

We try to raise our code quality standards and expect contributors to follow the recommandations from our handbook.

License

This work is released under the MIT License (see LICENSE).