{"id":19238250,"url":"https://github.com/olical/spark","last_synced_at":"2026-02-28T03:01:44.718Z","repository":{"id":1137267,"uuid":"1015913","full_name":"Olical/Spark","owner":"Olical","description":"A lightweight yet powerful JavaScript library","archived":false,"fork":false,"pushed_at":"2013-07-21T17:19:49.000Z","size":18811,"stargazers_count":12,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-09T09:50:59.391Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://wolfy87.github.io/Spark/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Olical.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-10-22T18:24:48.000Z","updated_at":"2018-06-18T08:25:46.000Z","dependencies_parsed_at":"2022-08-16T12:15:07.814Z","dependency_job_id":null,"html_url":"https://github.com/Olical/Spark","commit_stats":null,"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/Olical/Spark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2FSpark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2FSpark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2FSpark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2FSpark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Olical","download_url":"https://codeload.github.com/Olical/Spark/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Olical%2FSpark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278693624,"owners_count":26029559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T16:30:00.618Z","updated_at":"2025-10-06T23:20:26.490Z","avatar_url":"https://github.com/Olical.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## This project is dead!\n\nI haven't worked on this at all for a very long time, my skills have come a long way since then though. You might want to have a look at my other projects or my [blog](http://oli.me.uk/).\n\nYou may still learn something from the source though, so feel free to pick it apart. I would not advise using this for anything serious though. At all.\n\n## About\nSpark is my attitude towards coding summed up in one lovely script. I love to reinvent the wheel, but better. So what I did was take something that already exists (a JavaScript library), and make it easier to learn and use. It is easier to learn because I have tried to make all of the functions as multi-use as possible.\n\nFor example you can perform a basic AJAX call like so: `alert(Spark.ajax('get', 'someFile.php', 'data=some data'));`\n\nYou can then make this into an asynchronous request by just adding a callback, like so: `Spark.ajax('get', 'someFile.php', 'data=some data', function(data) { alert(data) });`\n\nAll functions are explained in the documentation as well as how to make plugins. Here is an example of making an element fade out to 0% opacity over the course of 1000 milliseconds, one second.\n\n`Spark('p.myParagraph').animate({opacity: 0}, 1000);`\n\nIf you are unsure of anything then [the documentation](http://sparkjs.co.uk/documentation.html) will sort you out.\n\nFor up to date news, follow [Spark on Twitter](http://twitter.com/#!/SparkJavaScript).\n\n## Thanks\nIf you are using Spark and you like it or at least like where it is going then please watch the repository or send me a message, I really would like to know how many people this is helping and what they would like to see in the future. *Any* suggestions are welcome.\n\n## Licences\n\n### MIT\nCopyright (C) 2011 Oliver Caldwell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n### GPL\nCopyright (C) 2011 Oliver Caldwell\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folical%2Fspark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Folical%2Fspark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folical%2Fspark/lists"}