{"id":18074150,"url":"https://github.com/bytespider/pipeline","last_synced_at":"2025-04-05T18:42:11.679Z","repository":{"id":136543799,"uuid":"1381824","full_name":"bytespider/Pipeline","owner":"bytespider","description":"Pipeline is a client-side, open source, document-oriented storage database.","archived":false,"fork":false,"pushed_at":"2011-02-24T16:11:50.000Z","size":116,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-11T15:59:35.029Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bytespider.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":"2011-02-18T09:49:55.000Z","updated_at":"2016-01-29T07:20:33.000Z","dependencies_parsed_at":"2023-04-05T03:38:52.282Z","dependency_job_id":null,"html_url":"https://github.com/bytespider/Pipeline","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytespider%2FPipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytespider%2FPipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytespider%2FPipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytespider%2FPipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bytespider","download_url":"https://codeload.github.com/bytespider/Pipeline/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247385457,"owners_count":20930594,"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","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-10-31T10:11:28.412Z","updated_at":"2025-04-05T18:42:11.649Z","avatar_url":"https://github.com/bytespider.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pipeline\n\nA client-side, open source, JSON document-oriented database.\n\n## Features\n\nReleased under the MIT. Please see LICENSE in the project root folder for more\ninformation.\n\n- Dynamic document-orientated schemas with JSON documents.\n- Rich queries utilising familier javascript function definitions.\n\n## Usage\n\n###Instantiating\n\n    var db = new Pipeline();\n    db.createCollection('users'); // db is now and instance of a Pipeline db\n    \n    \n###Inserting\n\nInsert function takes any number of documents insert(document1, document2, ... documentN)\n\n    db.users.insert({\n    \tname: 'Darth Vader',\n    \tage: 43\n    }, {\n    \tname: 'Luke Skywalker',\n    \tage: 21\n    });\n    \n###Searching / finding results\n\nThis example shows a simple query simpilar to SQL's `WHERE age = 21`\nMore keys are appended like an `AND` \ni.e. {age: 21, name: 'Darth Vader'} == `WHERE age = 21 AND name = 'Darth Vader'`\n  \n    var results = db.users.find({age: 21});\n    \nThis example shows more complicated queries uing the functional syntax\nThe function is called on each document within the collection to determine a match.\nFunctions *MUST* return a boolean, `TRUE` meaning a positive match\n\n    var results2 = db.users.find(function (){return name.indexOf('v') \u003e -1});\n\n## Authors\n\n  * Rob Griffiths (rob AT bytespider DOT eu)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbytespider%2Fpipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbytespider%2Fpipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbytespider%2Fpipeline/lists"}