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

framer-seed

v2.0.0

Published

Kickstart your Framer Library prototype development.

Downloads

5

Readme

framer-seed

framer-seed screenshot

This project is meant to get you started with Framer Library as quickly as possible.

You can use this project to create a local development environment similar to Framer.

A benefit of using this versus Framer is that you are able to stay within your preferred operating system, editor, and WebKit-compatible browser environment.

Table of Contents

Requirements

The project may work on earlier/later versions of the above, but it has not been officially tested.

Installation

  1. Clone the repository
  2. cd into the created directory
  3. Run yarn install

Quick Start

After the install has completed, run yarn dev to launch a local server at http://localhost:3000 and add your Framer Library code to app.coffee in the src folder.

Any changes you make to app.coffee or your modules will refresh the page automatically.

Commands

  • yarn start - Runs a local web server at http://localhost:3000 and refreshes the page when changes are made
  • yarn build - Compiles app.coffee and required modules for distribution
  • yarn install - Downloads and builds the defined version of Framer Library (defaults to the latest build)

Previewing & Distribution

Run yarn start to view your prototype at http://localhost:3000.

Your Framer prototype can also be viewed on other devices on your local network by pointing your device's WebKit-compatible browser to your local IP at port 3000 (e.g., http://192.168.0.100:3000). Any device type rendering will be hidden appropriately.

If you need to distribute your prototype, run yarn build to generate a build in the dist folder. Open index.html in any WebKit-compatible browser to view your prototype. Note that default device type renderings may not appear if you do not have an internet connection.

Importing/Exporting

Existing Framer projects can be easily imported into this project by copying the following files/folders from your project.framer folder into the project's src directory:

  • app.coffee
  • modules/ (optional if you do not have any modules)
  • images/ (optional if you do not have any locally referenced images)
  • imported/ (optional if you do not have any imported Sketch/Photoshop assets)

You can use Framer Generator to export assets from Sketch, Figma, or Photoshop.

Alternatively, you can copy the same folders to your project.framer folder from your framer-seed project to import back into Framer.

Framer Library Version

Running yarn install on this project automatically grabs the latest build of Framer Library. If you want to update the version of Framer Library that is being used, you can either run yarn install again or grab the latest build of Framer Library and copy framer.js into the src/framer/ directory.

Sometimes the latest build of Framer Library can be beta build so you might want/need to peg your project to a certain version. You can do this by pointing the framerjs dependency in package.json to a given version.

...
"dependencies": {
  "framerjs": "3.0.0"
},
...

Or, you can point it to a given commit hash.

...
"dependencies": {
  "framerjs": "git+ssh://[email protected]:koenbok/Framer.git#e33b16c"
},
...

You can also find a list of builds at http://builds.framerjs.com/.