Skip to content

martior/cfapp_sample

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#CloudFlare Apps

CloudFlare's Apps platform enables developers to create and publish Javascript applications (to start) for use by website owners on CloudFlare's network. See the full list.

When you're ready to develop an App, the first step is to sign up as a developer using your CloudFlare account.

#Live Examples

Three live examples of CloudFlare Apps created by outside developers

CloudFlare uses this same method to deliver some new services to its customers. Here are two examples.

##App key

Note: the trailing directory in the above examples (/earthhour and /trumpet and /abetterbrowser) is the app key. The app key is unique to your app, and must be approved by CloudFlare.

#Building an App

CloudFlare Apps are described with a cloudflare.json file, explained to the site owner with a cloudflare.md file, and are deployed using the CommonJS-compatible module loader cloudflare.js.

To build an app, you might clone this repository, and use it as a template to create your Javascript, app description, and app configuration. When you are done, go to the CloudFlare App Signup Page and submit a description of your app along with a git:// url for the repository.

We will evaluate your app, provide feedback and guidance, and help you publish and promote it to CloudFlare website owners.

#Elements of a CloudFlare App repo

This sample app, and the examples cited above, all include (at least) the elements listed below. Separate from the

  • cloudflare.json (required)
  • cloudflare.md (required)
  • App logo files (required)
  • App JavaScript file(s) (required)
  • App detail image file(s) (optional)
  • App image file(s) (coming soon; optional)
  • App CSS file(s) (coming soon; optional)

Descriptions of the required elements follow.

##cloudflare.json

The cloudflare.json file contains the packaging information for your application. It includes a path to your main JavaScript file, the definition for your configuration interface, and the location and nature of your non-JS assets.

##cloudflare.md

Your app detail page is generated by your cloudflare.md file (see the dnschanger_detector app detail page) and the dnschanger_detector cloudflare.md.

Recommend that you include images, such as screenshots. The max width on the app detail page is 708 pixels. More about images for app detail pages is detailed in the sample cloudflare.md.

##App logo files

Suggested directory for your logo files: /APP-KEY/public/images/

Required image file names

  • logo-132.png (132 pixels wide; height not constrained)
  • logo-200.png (200 pixels wide; height not constrained)

You'll define the logo locations in the cloudflare.json file.

##App JavaScript file(s)

Your App JavaScript file(s) is what gets deployed on customers' sites when they turn on the App, via cloudflare.js.

example script

#More info

##Testing

CloudFlare does not require you to provide any tests. This repository contains a sample suite in case you are interested in one way to build tests for cloudflare.js modules.

To run the sample suite, boot up a webserver with the root of this repository as the document root, and open test/suite.html.

##Modules of interest

CloudFlare has a set of modules that you can use when writing apps

###cloudflare/dom

A dom manipulation library similar to browser methods, but more generic.

###cloudflare/path

Tools for parsing where the page is.

###cloudflare/loader

An AJAX wrapper that behaves similarly to jquery.ajax

###cloudflare/config

General information about the site your module is running on.

##Interface

The website owner sets up an App in their CloudFlare Apps dashboard -- this link only works if signed in to a CloudFlare account, and it will ask you to select which zone (domain) you'd like to configure.

The simplest configuration requires nothing: the App may be turned On or Off, nothing more. Example: A Better Browser

On-Off only

More configuration is possible. Example: Trumpet.

String example

You can specify an interface in your cloudflare.json for site owners to use to configure your application. The results of that configuration are available in "your_app/config"

About

A Sample CloudFlare App

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published