Hoodie (software): Difference between revisions
Citation bot (talk | contribs) Misc citation tidying. | You can use this bot yourself. Report bugs here. | Suggested by Abductive | Category:Cross-platform free software | via #UCB_Category 153/379 |
Citation bot (talk | contribs) Added date. | Use this bot. Report bugs. | Suggested by Dominic3203 | Category:Software using the Apache license | #UCB_Category 213/325 |
||
(9 intermediate revisions by 9 users not shown) | |||
Line 11: | Line 11: | ||
}} |
}} |
||
In [[computing]], '''Hoodie''' is an [[Open-source software|open-source]] [[JavaScript]] package, that enables |
In [[computing]], '''Hoodie''' is an [[Open-source software|open-source]] [[JavaScript]] package, that enables offline-first,<ref>{{cite web|url= https://www.thoughtworks.com/radar/techniques/offline-first-web-applications |title= Offline first web applications |publisher= thoughtworks |access-date=14 Jan 2017}}</ref> [[front-end web development]] by providing a complete backend infrastructure.<ref>{{cite web|url= http://www.infoworld.com/article/2608168/javascript/open-source-hoodie-is-tailored-for-quick-app-dev.html |title= open-source hoodie is tailored for quick app dev |date= 20 May 2014 |publisher= InfoWorld |access-date=14 Jan 2017}}</ref> It aims to allow developers to rapidly develop web applications using only front-end code by providing a backend based on [[Node.js]] and [[CouchDB|Apache CouchDB]].<ref>{{cite web|url= http://www.peteonsoftware.com/index.php/2014/11/30/hoodie-part-1-an-intro-to-hoodie/ |title= hoodie part-1 an intro to hoodie |date= 31 December 2014 |publisher= peteonsoftware |access-date=14 Jan 2017}}</ref> It runs on many [[Unix-like]] systems as well as on [[Microsoft Windows]]. |
||
Hoodie is produced by the Hoodie Open Source Project, founded by Jan Lehnardt and Gregor Martynus in 2011<ref>{{cite web|url=https://twitter.com/janl/status/796072442959712256 |title=Twitter: @janl |publisher= @janl |access-date=2 Jan 2017}}</ref> and first released in 2013.<ref>{{cite web|url=https://www.youtube.com/watch?v=X3Ttb0BD8pg |title=First Hoodie presentation at apps.berlin.js (28.02.2013) |publisher=Alex Feyerke |access-date=2 Jan 2017}}</ref> It is written in [[JavaScript (programming language)|JavaScript]] and released as free software under the [[Apache License]] 2.0 <ref>{{cite web|url= https://github.com/hoodiehq/hoodie/blob/master/LICENSE |title= License |publisher= Hoodie Open Source Project |access-date=29 Dec 2016}}</ref> |
Hoodie is produced by the Hoodie Open Source Project, founded by Jan Lehnardt and Gregor Martynus in 2011<ref>{{cite web|url=https://twitter.com/janl/status/796072442959712256 |title=Twitter: @janl |publisher= @janl |access-date=2 Jan 2017}}</ref> and first released in 2013.<ref>{{cite web|url=https://www.youtube.com/watch?v=X3Ttb0BD8pg |title=First Hoodie presentation at apps.berlin.js (28.02.2013) |date=March 2013 |publisher=Alex Feyerke |access-date=2 Jan 2017}}</ref> It is written in [[JavaScript (programming language)|JavaScript]] and released as free software under the [[Apache License]] 2.0 <ref>{{cite web|url= https://github.com/hoodiehq/hoodie/blob/master/LICENSE |title= License |publisher= Hoodie Open Source Project |access-date=29 Dec 2016}}</ref> |
||
== Overview == |
== Overview == |
||
Line 24: | Line 24: | ||
== Architecture == |
== Architecture == |
||
[[File:Hoodie diagram.jpg|500px|thumb|Diagram showing how the interaction between the backend and frontend works]] |
<!-- Deleted image removed: [[File:Hoodie diagram.jpg|500px|thumb|Diagram showing how the interaction between the backend and frontend works {{FFDC|Hoodie diagram.jpg|log=2022 March 28}}]] --> |
||
The core structure of Hoodie is to provide a JavaScript package that provides API calls to store data on CouchDB or offline on PouchDB. The user does not need to understand how the online/offline synchronisation works. The backend is dealt with by simple commands to store and retrieve data. |
The core structure of Hoodie is to provide a JavaScript package that provides API calls to store data on CouchDB or offline on PouchDB. The user does not need to understand how the online/offline synchronisation works. The backend is dealt with by simple commands to store and retrieve data. |
||
Line 39: | Line 39: | ||
$('#todoinput').on('keypress', function(event) { |
$('#todoinput').on('keypress', function(event) { |
||
if (event.keyCode === 13 && event.target.value.length) { |
if (event.keyCode === 13 && event.target.value.length) { |
||
hoodie.store.add('todo', {title: event.target.value}); |
hoodie.store.add('todo', { title: event.target.value }); |
||
event.target.value = ''; |
event.target.value = ''; |
||
} |
} |
||
Line 49: | Line 49: | ||
== Community == |
== Community == |
||
Hoodie is open source and encourages community involvement. It is one of the first open source projects to establish a [[code of conduct]] from the outset.<ref>{{cite web|url= https://www.youtube.com/watch?v=h58Z5bBzI18 |title= Code of Conduct |publisher= TWiTFLOSS |access-date=29 Dec 2016}}</ref><ref>{{cite web|url= https://opensource.com/life/16/2/hoodie-open-source-community |title= Hoodie aims to be one of open source's most diverse and inclusive communities |publisher=Opensource.com |access-date=2 Jan 2017}}</ref> Hoodie community aims to involve both coders and non-coders in helping the project. As the Hoodie package is aimed at beginners and users unfamiliar with full stack software development, the community encourages all levels of technical and non-technical users to get involved. |
Hoodie is open source and encourages community involvement. It is one of the first open source projects to establish a [[code of conduct]] from the outset.<ref>{{cite web|url= https://www.youtube.com/watch?v=h58Z5bBzI18 |title= Code of Conduct |date= 15 March 2016 |publisher= TWiTFLOSS |access-date=29 Dec 2016}}</ref><ref>{{cite web|url= https://opensource.com/life/16/2/hoodie-open-source-community |title= Hoodie aims to be one of open source's most diverse and inclusive communities |publisher=Opensource.com |access-date=2 Jan 2017}}</ref> Hoodie community aims to involve both coders and non-coders in helping the project. As the Hoodie package is aimed at beginners and users unfamiliar with full stack software development, the community encourages all levels of technical and non-technical users to get involved. |
||
== Characteristics == |
== Characteristics == |
||
Line 60: | Line 60: | ||
Built to be [[cross-platform]], Hoodie works on all major [[Linux distribution]]s, as well as on other Unix-like systems [[Mac OS X]], and [[Microsoft Windows]] support. |
Built to be [[cross-platform]], Hoodie works on all major [[Linux distribution]]s, as well as on other Unix-like systems [[Mac OS X]], and [[Microsoft Windows]] support. |
||
Hoodie is used commercially by the [https://appback.com/ Appback] hosting site which uses hoodie to provide a Back end as a Service ( |
Hoodie is used commercially by the [https://appback.com/ Appback] {{Webarchive|url=https://web.archive.org/web/20161027113937/https://appback.com/ |date=2016-10-27 }} hosting site which uses hoodie to provide a Back end as a Service (BaaS),<ref>{{cite web|url= https://appback.com/Dont-leave-users-hanging-making-your-hybrid-app-run-offline/ |title=Don't leave users hanging making your hybrid app run offline |publisher=appback |access-date=14 Jan 2017}}</ref> [https://minutes.io/ minutes.io] web application and [https://neighbourhood.ie/ Neighbourhoodie] development house. |
||
A showcase of applications using Hoodie is provided on the [http://hood.ie/intro/#showcases Hoodie website]. |
A showcase of applications using Hoodie is provided on the [http://hood.ie/intro/#showcases Hoodie website]. |
||
Line 73: | Line 73: | ||
== External links == |
== External links == |
||
* [https://ahegaohoodie.store/ahegao-faces/ Ahegao Faces] |
|||
* {{Official website|http://www.hood.ie/}} |
|||
* [https://github.com/hoodiehq GitHub account] |
* [https://github.com/hoodiehq GitHub account] |
||
* [http://offlinefirst.org Offline First] |
* [http://offlinefirst.org Offline First] |
Latest revision as of 14:48, 10 December 2024
Developer(s) | Hoodie Open Source Project |
---|---|
Initial release | 2013 |
Written in | Javascript |
Type | Web development |
License | Apache |
Website | hood |
In computing, Hoodie is an open-source JavaScript package, that enables offline-first,[1] front-end web development by providing a complete backend infrastructure.[2] It aims to allow developers to rapidly develop web applications using only front-end code by providing a backend based on Node.js and Apache CouchDB.[3] It runs on many Unix-like systems as well as on Microsoft Windows.
Hoodie is produced by the Hoodie Open Source Project, founded by Jan Lehnardt and Gregor Martynus in 2011[4] and first released in 2013.[5] It is written in JavaScript and released as free software under the Apache License 2.0 [6]
Overview
[edit]Hoodie is designed to abstract away the configuration and communication between the database backend and allow web-based front end development using simple calls to the Hoodie API. Hoodie uses CouchDB to store data for the application. If the application is offline and cannot access the CouchDB database, data is stored locally on the device in the offline PouchDB database. The data will later be synced to CouchDB when the connection to the server is re-established, using CouchDB's database synchronisation feature.[7]
Hoodie depends on Node.js and Node Package Manager (npm) to allow it to be used from the command line and to provide other tools for Hoodie projects. When Hoodie and its dependencies are installed, a skeleton project directory and basic files to start an application including index.html and main.js are created. Hoodie can also be used with large web application frameworks including Backbone.js, Ember.js, and AngularJS.[8]
The core Hoodie package is targeted at creating personal applications and saving user data to personal storage areas. For instance, for to-do lists, memos or favourite book lists. A set of basic commands is provided to achieve these functions, which includes user signup, login, store, and more. Hoodie extensions provide functions beyond the core backend commands. Extensions can be written by anyone and use the npm package system. For instance, an extension to store data globally and allow multiple users to share and collaborate on the same data can be installed.[9]
Architecture
[edit]The core structure of Hoodie is to provide a JavaScript package that provides API calls to store data on CouchDB or offline on PouchDB. The user does not need to understand how the online/offline synchronisation works. The backend is dealt with by simple commands to store and retrieve data.
Example of the store function:
hoodie.store.add(type, object);
The hoodie.store.add function adds an object to a personal database store. The type parameter is where the object will be stored in CouchDB. CounchDB is a noSQL database and as such does not have tables but the 'type' identifier is similar to adding to a particular table in a database. This allows data/documents of a similar type to be stored, queried or retrieved using the same type identifier.
Full example of store function:
$('#todoinput').on('keypress', function(event) {
if (event.keyCode === 13 && event.target.value.length) {
hoodie.store.add('todo', { title: event.target.value });
event.target.value = '';
}
});
The example above shows how a todo item could be added to the Hoodie store. The item is added as with a type of 'todo' and the data sent is the simply a title value.
Community
[edit]Hoodie is open source and encourages community involvement. It is one of the first open source projects to establish a code of conduct from the outset.[10][11] Hoodie community aims to involve both coders and non-coders in helping the project. As the Hoodie package is aimed at beginners and users unfamiliar with full stack software development, the community encourages all levels of technical and non-technical users to get involved.
Characteristics
[edit]- Designed for offline first, no-backend, NoSQL web development.
- Hoodie is open source and encourages community involvement.
- Further extensions to core functionality are encouraged.
- Designed using an approach of writing simple, idealised 'dreamcode' and then finding a way to implement this into working code.
Platforms and users
[edit]Built to be cross-platform, Hoodie works on all major Linux distributions, as well as on other Unix-like systems Mac OS X, and Microsoft Windows support.
Hoodie is used commercially by the Appback Archived 2016-10-27 at the Wayback Machine hosting site which uses hoodie to provide a Back end as a Service (BaaS),[12] minutes.io web application and Neighbourhoodie development house.
A showcase of applications using Hoodie is provided on the Hoodie website.
See also
[edit]References
[edit]- ^ "Offline first web applications". thoughtworks. Retrieved 14 Jan 2017.
- ^ "open-source hoodie is tailored for quick app dev". InfoWorld. 20 May 2014. Retrieved 14 Jan 2017.
- ^ "hoodie part-1 an intro to hoodie". peteonsoftware. 31 December 2014. Retrieved 14 Jan 2017.
- ^ "Twitter: @janl". @janl. Retrieved 2 Jan 2017.
- ^ "First Hoodie presentation at apps.berlin.js (28.02.2013)". Alex Feyerke. March 2013. Retrieved 2 Jan 2017.
- ^ "License". Hoodie Open Source Project. Retrieved 29 Dec 2016.
- ^ "CouchDB Replication Protocol". Apache CouchDB. Retrieved 2 Jan 2017.
- ^ "Discover fast app dev with Hoodie". gadgetdaily. Retrieved 2 Jan 2017.
- ^ "hoodie-plugin-global-share". Hoodie Open Source Project. Retrieved 14 Jan 2017.
- ^ "Code of Conduct". TWiTFLOSS. 15 March 2016. Retrieved 29 Dec 2016.
- ^ "Hoodie aims to be one of open source's most diverse and inclusive communities". Opensource.com. Retrieved 2 Jan 2017.
- ^ "Don't leave users hanging making your hybrid app run offline". appback. Retrieved 14 Jan 2017.