All Projects → alexchantastic → framer-seed

alexchantastic / framer-seed

Licence: other
Kickstart your Framer Library prototype development.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects
coffeescript
4710 projects

Projects that are alternatives of or similar to framer-seed

Framer-Module-ShakeEvent
Shake event for your prototype.
Stars: ✭ 62 (+100%)
Mutual labels:  prototype, framer, framerjs, framer-prototype
Framer-CollectionComponent
Framer Module
Stars: ✭ 22 (-29.03%)
Mutual labels:  prototype, framer, framerjs, framer-prototype
Framer-app-base
A Framer module to create the base of an app with a flow component and a tab bar menu
Stars: ✭ 13 (-58.06%)
Mutual labels:  prototype, framer, framerjs
framer-view-stack
A Framer module for creating views that stack on top of each other.
Stars: ✭ 24 (-22.58%)
Mutual labels:  framer, framerjs
Spring Dubbo Service
微服务 spring dubbo项目:dubbo rpc;druid数据源连接池;mybatis配置集成,多数据源;jmx监控MBean;定时任务;aop;ftp;测试;Metrics监控;参数验证;跨域处理;shiro权限控制;consul服务注册,发现;redis分布式锁;SPI服务机制;cat监控;netty服务代理;websocket;disconf;mongodb集成;rest;docker;fescar
Stars: ✭ 224 (+622.58%)
Mutual labels:  prototype
Quiz App
A repository reflecting the progress made on the "How to Build iOS Apps with Swift, TDD & Clean Architecture" YouTube series, by Caio & Mike.
Stars: ✭ 230 (+641.94%)
Mutual labels:  prototype
Rplibs
Refs.cn 原型设计元件库,基于Axure RP 10/9/8,支持 Android、Apple、Windows、微信,移动、桌面平台的应用和网站原型设计。五年历程 2.6k+ star,感谢大家使用。
Stars: ✭ 2,622 (+8358.06%)
Mutual labels:  prototype
Server Components
🔧 A simple, lightweight tool for composable HTML rendering in Node.js, based on web components.
Stars: ✭ 212 (+583.87%)
Mutual labels:  prototype
prototype
📖Prototype Document
Stars: ✭ 45 (+45.16%)
Mutual labels:  prototype
contact-tracer
A prototype contact tracer app for COVID-19 pandemic response
Stars: ✭ 50 (+61.29%)
Mutual labels:  prototype
oh-my-design-patterns
🎨 Record the articles and code I wrote while learning design patterns
Stars: ✭ 33 (+6.45%)
Mutual labels:  prototype
Pokegold Spaceworld
Disassembly of the Pokémon Gold and Silver 1997 Space World demo
Stars: ✭ 246 (+693.55%)
Mutual labels:  prototype
lighthouse
Lighthouse is a continuous design system for integrating design with development workflows.
Stars: ✭ 25 (-19.35%)
Mutual labels:  framer
framer-module-ajax
An Ajax module for Framer.
Stars: ✭ 21 (-32.26%)
Mutual labels:  framer
ray engine
A toy raycasting engine in Go + Ebiten
Stars: ✭ 19 (-38.71%)
Mutual labels:  prototype
beemos
BEE MOnitoring System: create an infrastructure for monitoring beehives
Stars: ✭ 16 (-48.39%)
Mutual labels:  prototype
Javascript Interview Questions
500+ JavaScript Interview Questions
Stars: ✭ 208 (+570.97%)
Mutual labels:  prototype
leaderboard-example
IOTA Proof of Concept Application example. With tutorial.
Stars: ✭ 64 (+106.45%)
Mutual labels:  prototype
dragon
Dragon is a universal Python translater.
Stars: ✭ 26 (-16.13%)
Mutual labels:  prototype
apdu-over-ble
Specification of a protocol to transmit APDU commands and responses over Bluetooth Low Energy
Stars: ✭ 17 (-45.16%)
Mutual labels:  prototype

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/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].