# ๐ŸŒŸ Welcome to DataFormsJS! **Thanks for visiting!** ๐ŸŒ ๐Ÿ‘
๐ŸŒ   ๐ŸŒŽ   ๐ŸŒ   ๐ŸŒ
ไธญๆ–‡ (็ฎ€ไฝ“) ๆฌข่ฟŽๆฅๅˆฐ DataFormsJS
Espaรฑol Bienvenido a DataFormsJS
Portuguรชs (do Brasil) Bem vindo ao DataFormsJS
ๆ—ฅๆœฌ่ชž DataFormsJSใธใ‚ˆใ†ใ“ใ
DataFormsJS is a JavaScript Framework and Standalone React and Web Components. A tiny browser-based [JSX Compiler](https://github.com/dataformsjs/dataformsjs/blob/master/docs/jsx-loader.md) is also included as part of this Framework. DataFormsJS is small in size, easy to learn, designed for fast development, and to make for a great experience for both developers and end-users. DataFormsJS was first published in November of 2019, however it was written and used over many years and is extremely stable containing a large number of unit tests. This repository contains DataFormsJSโ€™s Framework, Example Pages, and Unit Tests. The main website exists on another repository. ## ๐Ÿ’ซ Why use DataFormsJS? |Faster Development|Small Size|Easy to Learn| |---|---|---| |**Faster Development** Display data from Web and GraphQL Services using only HTML Markup and define App and Site features using HTML Attributes.|**Small Size** All files are small in size and downloaded only when used allowing for greater performance and a smaller site.|**Easy to Learn** DataFormsJS is built around HTML, CSS, JavaScript, Templating and has a minimal JavaScript and HTML API so you can get started immediately.| |Stability|Flexibility|Better Sites| |---|---|---| |**Stability** Designed for long term use; a site developed with DataFormsJS today will work great and be easy to maintain decades from now.|**Flexibility** Works well with other code and the API is designed for flexibility and custom features. If you can think it, you can build it with DataFormsJS.|**Better Sites** DataFormsJS is designed to be a great experience for both developers and end users allowing you to create better sites.| |Works with|React
React
|Vue
Vue
|Handlebars
Handlebars
|GraphQL
GraphQL
|Preact
Preact
|and more!| |---|---|---|---|---|---|---| |Learn something new!|
Web Components
Web Components
| |---|---| ## ๐Ÿš€ Getting Started **Getting started with DataFormsJS is extremely easy.** Install from **npm**, this option works great if you are using `create-react-app` or want a copy of all files locally: ``` npm install dataformsjs ``` **Download this Repository**. Itโ€™s small to download because this repository has no dependencies and loads HandlebarsJS, Vue, and React from a CDN. To view example pages locally Node needs to be installed and then you can start the local server using: ``` npm start ``` The start screen allows you to quickly filter and view many different examples and resources.

DataFormsJS npm start page

JavaScript files for the Framework and standalone React and Web Components exist under the `js` directory. Full Directory Structure and Key files: ``` dataformsjs โ”œโ”€โ”€ docs โ”‚ โ”œโ”€โ”€ examples โ”‚ โ”œโ”€โ”€ *.htm โ”‚ โ””โ”€โ”€ server.js โ”‚ โ””โ”€โ”€ js โ”‚ โ”œโ”€โ”€ DataFormsJS.js โ”‚ โ”œโ”€โ”€ react\*.js โ”‚ โ”œโ”€โ”€ web-components\*.js โ”‚ โ””โ”€โ”€ *\*.js โ”‚ โ”œโ”€โ”€ scripts\*.js โ”‚ โ”œโ”€โ”€ server\*.js โ”‚ โ”œโ”€โ”€ test โ”‚ โ”œโ”€โ”€ *.htm โ”‚ โ””โ”€โ”€ server.js โ”‚ โ””โ”€โ”€ server\app.js ``` **Develop online** using the code playground: https://www.dataformsjs.com/en/playground

Code Playground

**Download a template file** using scripts from a CDN: https://www.dataformsjs.com/en/getting-started

Getting Started Templates

## ๐Ÿ“„ Example Code - Vue with DataFormsJS Framework This example uses Vue for templating. If you save it with a text editor you can view it locally in your browser. Additionally the main site contains many templates and examples. DataFormsJS works with both Vue 2 and Vue 3. ```html DataFormsJS Example using Vue
``` ## ๐Ÿ“„ Example Code - React This example uses React with the `jsxLoader.min.js` script for converting JSX to JS directly in the browser and it includes DataFormsJS React Components from `DataFormsJS.min.js`. If you copy the contents of this code it will also work in a browser. All React Components are also compatible with Preact when using jsxLoader. ```html DataFormsJS Example using React
``` When working with node or webpack you will typically import Libraries using an `import` statement: ```js // Use React Hooks import React, { useState, useReducer } from 'react'; // Use React Router import { BrowserRouter as Router, Route, Link, NavLink } from "react-router-dom"; // Use Redux import { createStore } from 'redux' import { Provider, connect } from 'react-redux'; // Import Individual DataFormsJS React Components import JsonData from 'dataformsjs/js/react/es6/JsonData'; import LazyLoad from 'dataformsjs/js/react/es6/LazyLoad'; import Format from 'dataformsjs/js/react/es6/Format'; import ErrorBoundary from 'dataformsjs/js/react/es6/ErrorBoundary'; // [Cache, CssVars, I18n, ImageGallery, InputFilter, LeafletMap, Markdown, SortableTable] ``` When working with the `jsxLoader` and compiling JSX directly in a browser the recommend method for importing is to simply reference the global classes or functions of the libraries that you need for your app: ```js // Use React Hooks const useState = React.useState; const useReducer = React.useReducer; // Use React Router const Router = ReactRouterDOM.HashRouter; const Route = ReactRouterDOM.Route; const NavLink = ReactRouterDOM.NavLink; const Link = ReactRouterDOM.Link; // Use Redux const Provider = ReactRedux.Provider; const connect = ReactRedux.connect; const createStore = Redux.createStore; ``` Many examples exist for popular React Libraries using `jsxLoader` at the following site: https://awesome-web-react.js.org/

Awesome Web React

## ๐Ÿ“„ Example Code - Web Components This example uses DataFormsJS Web Components. Web Components are well defined standard and provide for functionally similar to JavaScript Frameworks while using less JavaScript code. ```html DataFormsJS Example using Web Components
``` ## ๐Ÿค Contributing **All contributions are welcome.** For major changes including breaking changes to existing code or updating existing graphics and files, please open an issue first to discuss what you would like to change. Some examples of items to contribute: * Typos and Grammar Mistakes - If you see any please fix and submit. * Documentation and Tutorials. Currently most documentation is in the quick reference section and code comments so a lot of documentation will be needed and written over time. * Many more examples will be developed in the future. If you have ideas please submit. * Additional Unit Tests and Testing Methods - Core Framework files and features are Unit Tested however every line of code should be Unit Tested in all files. Currently there is are no Unit Tests for Vue, React, and Web Components. * Additional Scripts, React Components, Web Components, and Features. * New Ideas - If you have ideas on how to improve then please open an issue to discuss. The [docs/to-do-list.txt](https://github.com/dataformsjs/dataformsjs/blob/master/docs/to-do-list.txt) file contains the full list of items that are currently pending and is good place to start. ## โ“ FAQ **Why was DataFormsJS Created?** Initial development and use of DataFormsJS occurred privately in 2013 to allow for rapid development of high quality and bug free Single Page Applications (SPA). DataFormsJS was designed to have a small size, great performance, and to be much faster for development compared to other Frameworks. A few of the reasons for fast development include displaying JSON services using only Markup and Templating (Handlebars, Underscore, etc.) and defining App and Site features using HTML attributes and small JavaScript Plugins. Early versions of DataFormsJS were used a number of companies in many different types of apps. Now that both React and Vue have become very popular separate React Components have been developed to help with React Development and the Framework has been expanded to support Vue. Additionally separate Web Components have been developed to allow for similar functionality in modern browsers without using a JavaScript framework. **Why did it take so long to release?** The author of DataFormsJS had a number of busy jobs at the time and was also working on another large project at the same time [FastSitePHP](https://www.fastsitephp.com/). **How large is DataFormsJS?** _All sizes are based on minified scripts and gzip compression from the web server. The file size can vary slightly between different browsers and CDNs - for example the Framework is 12.1 kB in Safari and 12.5 kB in Chrome._ * **DataFormsJS Framework โ€“ 12.5 kB** (157 kB full version uncompressed) * Additional files (controllers, plugins, etc) are typically only 1-3 kB each. * In general when using the Framework expect about 15 kB for the initial page load, and then several kB for additional pages that load extra plugins, pages, controllers, etc. * **React JSX Loader โ€“ 6.6 kB** (91 kB full version uncompressed) * **React (Core Components) โ€“ 5.7 kB** * Individual React Components are between 3 and 12 kB when uncompressed and including comments. * **Web Components are typically around 1 to 3 kB each**, typically you will use a number of components so in the example apps this adds up to about 15 kB for each app. While the DataFormsJS Framework is small it will generally be used with a larger Templating or View Engine: * React: ~ 40 kB * Handlebars: ~ 22 kB * Vue 2: ~ 33 kB * Vue 3: ~ 40 kB * Underscore: ~ 6 kB * Nunjucks - ~ 25 kB Additionally in a complex or large site third-party code is expected to account for the largest amount of JavaScript. For example CodeMirror Text Editor used on the Playground site is around 250 kB, however DataFormsJS has the ability to download third-party code only when it will be needed based on the URL. **How do I use the JSX Loader for React?** See the main document: https://github.com/dataformsjs/dataformsjs/blob/master/docs/jsx-loader.md **What are the future plans for DataFormsJS?** DataFormsJS is here for the long run and will be developed indefinitely with new features, components, examples, docs, etc. While DataFormsJS is a Framework it also includes standalone web components which can be used without the Framework. Over time many additional framework plugins and web components will be developed. DataFormsJS will continue to be developed in a manner that allows for web based development (for example: the playground site) and will be kept small in size loading scripts only when needed. **What does the logo represent and where is the source?** DataFormsJS The main DataFormsJS logo is a drawing of a hash symbol in a URL and it uses colors from the main DataFormsJS website. The logo was chosen because the DataFormsJS Framework was originally created for Single Page Applications (SPA). * DataFormsJS SVG: https://github.com/dataformsjs/website/blob/master/public/img/DataFormsJS.svg * DataFormsJS Logo Various Sites and Formats: https://github.com/dataformsjs/static-files/tree/master/img/logo * The DataFormsJS logos is dual licensed under both **MIT License** and Creative Commons Attribution 4.0 International License. * Feel free to copy the logo as needed if publishing anything that references DataFormsJS. ## ๐Ÿ“ License This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.