{"id":15672916,"url":"https://github.com/hph/wings","last_synced_at":"2026-03-07T23:02:34.097Z","repository":{"id":24286346,"uuid":"101103032","full_name":"hph/wings","owner":"hph","description":"A text editor inspired by Vim, written in JavaScript and React.","archived":false,"fork":false,"pushed_at":"2022-12-08T22:01:37.000Z","size":3212,"stargazers_count":16,"open_issues_count":20,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-11T18:47:16.157Z","etag":null,"topics":["editor","electron","react","redux"],"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/hph.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-22T20:09:38.000Z","updated_at":"2024-06-28T16:12:22.000Z","dependencies_parsed_at":"2023-01-14T08:30:23.512Z","dependency_job_id":null,"html_url":"https://github.com/hph/wings","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/hph/wings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hph%2Fwings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hph%2Fwings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hph%2Fwings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hph%2Fwings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hph","download_url":"https://codeload.github.com/hph/wings/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hph%2Fwings/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30236048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["editor","electron","react","redux"],"created_at":"2024-10-03T15:33:30.046Z","updated_at":"2026-03-07T23:02:34.079Z","avatar_url":"https://github.com/hph.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wings · [![Build Status](https://img.shields.io/travis/hph/wings/master.svg?style=flat-square)](https://travis-ci.org/hph/wings) [![Coverage](https://img.shields.io/coveralls/hph/wings/master.svg?style=flat-square\u0026label=test%20coverage)](https://coveralls.io/github/hph/wings)\n\nA text editor inspired by Vim, written in JavaScript and React.\n\nCaveat emptor: this application is built for my own needs and is almost\ncertainly of no direct use to anyone else.\n\n![Demo](https://www.dropbox.com/s/qog2a5d8rdcjs6q/Wings.png?raw=1)\n\n## Download\n\nThe latest Mac release is available for download\n[here](https://github.com/hph/wings/releases). Note that releases are built\ninfrequently and that you can also [build the\napp](https://github.com/hph/wings#building-for-production) yourself.\n\n## Usage\n\nWings is heavily inspired by\n[Vim](\u003chttps://en.wikipedia.org/wiki/Vim_(text_editor)\u003e) and currently supports\na subset of its commands, in addition to some new features. At this time there\nis no proper documentation or even a list of features, but you can explore the\nkeys section of the [default\nconfig](https://github.com/hph/wings/blob/master/src/main-process/default-config.json)\nto learn more.\n\n## Development\n\nIn order to run Wings in development mode you will need\n[Git](https://git-scm.com/download), [Node.js](https://nodejs.org/en/download/)\nand ideally [Yarn](https://yarnpkg.com/en/docs/install). Once you have all of\nthose installed, you may fetch the project and install its dependencies as\nfollows:\n\n    git clone git@github.com:hph/wings.git\n    cd wings\n    yarn\n\nIn order to build the app and automatically rebuild it when the code is changed,\nopen a new terminal in the same directory and run:\n\n    yarn build:dev\n\nYou should now be able to go back to the previous terminal and start Wings:\n\n    yarn start\n\nYou may optionally provide an argument to open a file, such as `package.json`:\n\n    yarn start package.json\n\n### Development tools\n\nThe project is set up with a comprehensive test suite, a linter, and a\nformatter. You may run all of these as follows:\n\n    yarn test\n\nIf you wish to run the test suite, linter, or formatter separately, run one of\nthe following commands as appropriate:\n\n```bash\nyarn lint      # Run ESLint directly\nyarn format    # Run Prettier directly\nyarn test:only # Run the test suite\n```\n\nYou can see the results for the linter, formatter and tests for the master\nbranch on [Travis CI](https://travis-ci.org/hph/wings) and code coverage\ninformation on [Coveralls](https://coveralls.io/github/hph/wings). Builds are\nautomatically run against all branches and pull requests.\n\n## Building for production\n\nThe build process is a bit slower in production mode as it minifies the code and\nalso builds the app into a single package. Run the following command:\n\n    NODE_ENV=production yarn build\n\nThe production build has only been tested on a Mac. If you run into any issues,\nplease [open an issue](https://github.com/hph/wings/issues/new).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhph%2Fwings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhph%2Fwings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhph%2Fwings/lists"}