Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
Camilo edited this page Jun 28, 2021 · 7 revisions

These are the community docs. You can post here small snippets, solutions and common workarounds.

Vision

Mobile Apps as easy as writing a blog post

What is Jasonelle?

Jasonelle/Jasonette is a small framework for making Mobile Apps (Android, iOS) using JSON and JavaScript.

Advantages:

  • It comes with a predefined set of tools to allow native access to android and ios sdks

  • You can use your already made web app or can create something 100% native with json

When to use:

  • You have already made a web app and need to convert it to native

  • You want to experiment and create small tools

  • You are a single developer / small business that needs a native app but don’t have funds to hire a mobile developer team

When not to use:

  • You need something using the latest frameworks and languages

  • You have a team of native android and ios developers who can build something with other frameworks like react native

  • You have a specific use case that would need native development. In this case this would require special consideration if Jasonette fits your use case.

Examples

Additional Docs

These docs are valid for Jasonelle version v1 and v2.

Embed your Website

Using this quick json

{
    "$jason": {
        "body": {
            "background": {
                "type": "html",
                "url": "https://www.google.com",
                "style": {
                    "background": "#ffffff",
                    "progress" : "rgba(0,0,0,0)"
                },
                "action": {
                    "type": "$default"
                }
            }
        }
    }
}

Example

A simple [Docker Configuration](https://github.com/jasonelle/docker) is provided to help building Android in Release or Debug mode.

Clone this wiki locally