{"id":21547888,"url":"https://github.com/magentanova/psst","last_synced_at":"2025-06-23T18:03:58.471Z","repository":{"id":97443640,"uuid":"55622812","full_name":"magentanova/psst","owner":"magentanova","description":"Demo of group-messaging app, written in React and using Firebase as a BaaS.","archived":false,"fork":false,"pushed_at":"2016-04-13T20:51:04.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-18T01:47:09.906Z","etag":null,"topics":["backbonejs","firebase","react"],"latest_commit_sha":null,"homepage":"","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/magentanova.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-04-06T16:35:27.000Z","updated_at":"2017-07-21T17:38:57.000Z","dependencies_parsed_at":"2023-03-13T16:13:39.201Z","dependency_job_id":null,"html_url":"https://github.com/magentanova/psst","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/magentanova/psst","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magentanova%2Fpsst","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magentanova%2Fpsst/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magentanova%2Fpsst/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magentanova%2Fpsst/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/magentanova","download_url":"https://codeload.github.com/magentanova/psst/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magentanova%2Fpsst/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261528619,"owners_count":23172748,"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":["backbonejs","firebase","react"],"created_at":"2024-11-24T06:16:34.846Z","updated_at":"2025-06-23T18:03:58.421Z","avatar_url":"https://github.com/magentanova.png","language":"JavaScript","readme":"# Universal JS Boilerplate\n\n\u003e **WARNING** This version of Universal JS Boilerplate uses Babel v6, which is **UNDER ACTIVE DEVELOPMENT**. The plugin system currently has a lot of issues, and the Babel v6 presets for ES2015/ES7 features are having a few difficulties as of Nov 6th, 2015. Noted among the currently non-working features are static and non-static class properties, decorators, and the destructuring of complex objects in function arguments.\n\nThis is a scaffolding project that includes boilerplate code for:\n\n- Node\n- Heroku configuration\n- Babel, Babel runtime, ES6/2015, ES7/2016\n- Node-sass, some example SCSS, grids, normalize and typeplate css kits (installed from bower)\n- Example files/resources\n- An example .gitignore for the project\n- A host of npm scripts for watching and building your files\n- Documentation and testing scaffolds\n\n# Major Changes\n\n## V2.0 - Koa v2 is now the serverside library handling requests\n\nThis Koa v2 code has some default code setup for hosting code over HTTPS, as well as taking advantage of the SPDY \u0026 HTTP/2 protocols for even faster content delivery. Here's an overview of the features:\n\n* Socket.io support with sticky-sessions (for HAProxy)\n* Clustering with the cluster module\n* Smart header support for ETags and conditional gets\n* Gzip compression on responses\n* Signed, cookie-based sessions\n* Request logging (morgan)\n* Static file serving\n* Favicon middleware\n* HTTP/2 and SPDY over TLS\n* Routing with async or sync routes (via Koa itself)\n* Support for Koa 1.0 and 2.0 middleware with koa-adapter\n\nMore info about Koa v2 here: https://github.com/koajs/koa/tree/v2.x\n\n# Getting Started\n\n1. Start your own project folder with a git clone, and if you plan to push this clone to GitHub, you'll need to change your origin:\n\n    ```sh\n    cd ~/Github\\ Projects/\n    git clone git@github.com:matthiasak/universal-js-boilerplate.git NEWPROJECT\n    cd NEWPROJECT\n    git remote remove origin\n    git remote add origin YOUR_SSH_ADDRESS\n    ```\n\n2. Install prerequisites\n\n    ```sh\n    npm install\n    ```\n\n3. Start your server:\n\n    ```sh\n    npm start\n\n    # Alternatively, if doing server-side work\n    # npm run start:n\n    ```\n\n4. Ready to push your code to heroku?\n\n    ```sh\n    git commit -am \"Let's do this\"\n    heroku create \u003cmy app name\u003e\n    git push heroku HEAD:master\n    ```\n\n5. Or are you pushing to gh-pages instead?\n\n    ```sh\n    npm run publish:gh-pages\n    ```\n\n6. Or are you using [surge.sh](http://surge.sh)?\n\n    ```sh\n    npm run publish:surge\n    # you may be prompted to login or signup,\n    # and then you'll be asked what URL to push to on surge.sh\n    ```\n\n    \u003e Note: you can teardown a surge.sh URL with `npm run teardown`, which will prompt you for the URL to bring down\n\n7. Want to generate your own documentation with [esdocs](https://github.com/esdoc/esdoc)?\n\n    ```sh\n    # build docs and open locally\n    npm run docs\n    open dist/esdoc/index.html\n    # or build AND publish to gh-pages or to surge\n    npm run docs:gh-pages\n    npm run docs:surge\n    ```\n\n8. Need shields?\n\n    http://shields.io/\n\n# License\n\nMIT.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagentanova%2Fpsst","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagentanova%2Fpsst","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagentanova%2Fpsst/lists"}