{"id":21396754,"url":"https://github.com/flxwu/asciimoji","last_synced_at":"2025-07-13T19:31:21.873Z","repository":{"id":73685113,"uuid":"120684495","full_name":"flxwu/ASCIImoji","owner":"flxwu","description":":top::new: ¯\\_(ツ)_/¯  React Native iOS + Android App providing 150+ ASCII Emojis for copy\u0026pasting","archived":false,"fork":false,"pushed_at":"2018-02-07T23:56:22.000Z","size":3398,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T17:11:12.731Z","etag":null,"topics":["android","android-app","art","ascii","ascii-art","ascii-art-generator","cross-platform","emoji","emojis","ignite","ignite-cli","ios","ios-app","javascript","react","react-ios","react-native","react-native-android","react-native-app","react-native-ios"],"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/flxwu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-02-07T23:21:14.000Z","updated_at":"2023-04-17T06:10:26.000Z","dependencies_parsed_at":"2023-04-24T20:05:21.076Z","dependency_job_id":null,"html_url":"https://github.com/flxwu/ASCIImoji","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/flxwu/ASCIImoji","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flxwu%2FASCIImoji","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flxwu%2FASCIImoji/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flxwu%2FASCIImoji/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flxwu%2FASCIImoji/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flxwu","download_url":"https://codeload.github.com/flxwu/ASCIImoji/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flxwu%2FASCIImoji/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265194856,"owners_count":23725980,"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":["android","android-app","art","ascii","ascii-art","ascii-art-generator","cross-platform","emoji","emojis","ignite","ignite-cli","ios","ios-app","javascript","react","react-ios","react-native","react-native-android","react-native-app","react-native-ios"],"created_at":"2024-11-22T14:28:53.910Z","updated_at":"2025-07-13T19:31:21.862Z","avatar_url":"https://github.com/flxwu.png","language":"JavaScript","readme":"#  ASCIImoji\n\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](http://standardjs.com/)\n\nReact Native iOS + Android App providing 150+ ASCII Emojis for copy\u0026amp;pasting\n\n## Screenshots\n\n\u003cdiv style=\"text-align:center\" align=\"middle\"\u003e\n  \u003cimg src=\"screenshot.png\" alt=\"ASCIImoji Screenshot\" width=\"200\" height=\"400\" align=\"middle\"/\u003e\n  \u003cimg src=\"screenshot2.png\" alt=\"ASCIImoji Screenshot\" width=\"200\" height=\"400\" align=\"middle\"/\u003e\n\u003c/div\u003e\n\n## :arrow_up: How to Setup\n\n**Step 1:** git clone this repo:\n\n**Step 2:** cd to the cloned repo:\n\n**Step 3:** Install the Application with `yarn` or `npm i`\n\n\n## :arrow_forward: How to Run App\n\n1. cd to the repo\n2. Run Build for either OS\n  * for iOS\n    * run `react-native run-ios`\n  * for Android\n    * Run Genymotion\n    * run `react-native run-android`\n\n## :no_entry_sign: Standard Compliant\n\n[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)\nThis project adheres to Standard.  Our CI enforces this, so we suggest you enable linting to keep your project compliant during development.\n\n**To Lint on Commit**\n\nThis is implemented using [husky](https://github.com/typicode/husky). There is no additional setup needed.\n\n**Bypass Lint**\n\nIf you have to bypass lint for a special commit that you will come back and clean (pushing something to a branch etc.) then you can bypass git hooks with adding `--no-verify` to your commit command.\n\n**Understanding Linting Errors**\n\nThe linting rules are from JS Standard and React-Standard.  [Regular JS errors can be found with descriptions here](http://eslint.org/docs/rules/), while [React errors and descriptions can be found here](https://github.com/yannickcr/eslint-plugin-react).\n\n## :closed_lock_with_key: Secrets\n\nThis project uses [react-native-config](https://github.com/luggit/react-native-config) to expose config variables to your javascript code in React Native. You can store API keys\nand other sensitive information in a `.env` file:\n\n```\nAPI_URL=https://myapi.com\nGOOGLE_MAPS_API_KEY=abcdefgh\n```\n\nand access them from React Native like so:\n\n```\nimport Secrets from 'react-native-config'\n\nSecrets.API_URL  // 'https://myapi.com'\nSecrets.GOOGLE_MAPS_API_KEY  // 'abcdefgh'\n```\n\nThe `.env` file is ignored by git keeping those secrets out of your repo.\n\n### Get started:\n1. Copy .env.example to .env\n2. Add your config variables\n3. Follow instructions at [https://github.com/luggit/react-native-config#setup](https://github.com/luggit/react-native-config#setup)\n4. Done!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflxwu%2Fasciimoji","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflxwu%2Fasciimoji","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflxwu%2Fasciimoji/lists"}