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

plasmic-knack

v0.0.5

Published

Components for working with the Knack api from Plasmic

Downloads

3

Readme

Plasmic-Knack

Component (Knack Provider) for interacting with the Knack API from Plasmic.

The Knack Provider component uses view-based authentication and can be used to:

  • Fetch records
  • Create records
  • Update records
  • Delete records

Optimistic mutations are available (optional) so you can create seamless user experiences that are not normally available in a Knack app.

Components or pages you make can be published back to your Knack app using the instructions in plasmic-codegen-into-html-with-vite.

How to create a custom-view for your Knack app

In this section we explain how to use Plasmic-Knack to create a custom view to embed into your Knack app.

  1. Create a new Plasmic app in the Plasmic user interface.
  2. Create a new code repo on your local machine and set it up as per plasmic-codegen-into-html-with-vite. See the How To Use instructions there.
    • Follow instructions in all sections except the section called "Registering custom components for use in Plasmic studio"
  3. In your repo, install plasmic-knack by running this command in terminal:
    npm install plasmic-knack
  4. Register the plasmic-knack component so you can use it in Plasmic studio:
    1. Make sure you've already configured your custom app host
    2. Go to ./src/plasmic-host.tsx and add these lines:
      //Add these imports near the top of your file
      import { KnackProvider, KnackProviderMeta } from "plasmic-knack"
      //Register custom components below all imports
      registerComponent(KnackProvider, KnackProviderMeta);
    3. Make sure your dev server is running (npm run dev) and then Refresh Plasmic studio. You should see the new KnackProvider component ready to use under "Custom Components"
  5. Create components that use KnackProvider in Plasmic studio then follow the Development Workflow to attach them to the browser window and test them.
  6. Deploy your repo to Netlify
  7. Import your custom component into your Knack app and use as required (more info coming soon)