KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
framer.module.cloudstitch
★ 15
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
ng2-wizard
:
No description available.
loadie
:
Android Loaders for the rest of us
locationservice
:
Service to keep a historical record of team member locations
smart-contract
:
couple of smart contracts written in solidity
website
:
Crypto++ website
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
framer.module.cloudstitch
?
Download (.md)
<img src="http://static.cloudstitch.com/img/assets/cloudstitch-framer-module.png" style="margin-left: auto; margin-right: auto; display: block; max-height: 200px; max-width: 90%" alt ="Cloudstitch Framer Module"> The **Cloudstitch Framer Module** lets you load data from Google Spreadsheets and Microsoft Excel directly into your Framer projects. We think designers should work with _realistic_ data as often as possible. It informs your design decisions, lets you find edge cases that need to be accommodated, and makes for much better demos. But keeping your data in JSON files is no fun: they're a pain to edit and can't be easily shared. Cloudstitch lets you load the data from shared spreadsheets in the cloud instead. ## How to Install Add the ```cloudstitch.coffee``` file to the `/modules` folder of your project. You can find it in the `/modules` folder of the example project included in this repository. This git repository is also a working Framer project that serves as an example. Download it and double click `cloudstitch.framer` file to see. ## How to Use ### 1. Create a spreadsheet using Cloudstitch <img src="http://static.cloudstitch.com/movies/cloudstitch-framer-create.gif" style="margin-left: auto; margin-right: auto; display: block; max-height: 200px; max-width: 90%" alt ="Cloudstitch Framer Module"> Clone the [Framer Module Demo](https://www.cloudstitch.com/project-templates/framer-module-demo/clone) on Cloudstitch and then edit the spreadsheet created for your new project. This spreadsheet acts as the datasource that you can load from Framer. ### 2. Sync your spreadsheet with Cloudstitch <img src="http://static.cloudstitch.com/movies/snapshot.gif" style="margin-left: auto; margin-right: auto; display: block; max-height: 200px; max-width: 90%" alt ="Cloudstitch Framer Module"> When you're done editing the spreadsheet, press the green **Sync with your Template** button in Cloudstitch. This makes a fresh copy of your spreadsheet available over Cloudstitch's API. ### 3. Use the spreadsheet data in Framer Include the Cloudstitch module within your project by adding the following: ``` coffeescript cloudstitch = require "cloudstitch" ``` Then get data from your spreadsheet by providing the Cloudstitch username and appname of your project: ``` coffeescript cloudstitch.get(username, appname, (data) -> callback(data)) ``` In that code snippet, `callback` is a function that will get called and passed the variable `data`, which contains all the tables from your spreadsheet. You can find the username and appname for your Cloudstitch project by looking at its URL: <img src="http://static.cloudstitch.com/img/assets/username-appname.png" style="margin-left: auto; margin-right: auto; display: block; max-height: 200px; max-width: 90%" alt ="Cloudstitch Framer Module"> ### 4. Examples and Code Download the library, along with working demo code, at [github.com/cloudstitch/framer.module.cloudstitch](http://github.com/cloudstitch/framer.module.cloudstitch)