{"id":20052722,"url":"https://github.com/ryosukecla/xethon","last_synced_at":"2026-04-13T21:31:24.302Z","repository":{"id":148437578,"uuid":"81542007","full_name":"RyosukeCla/XeThon","owner":"RyosukeCla","description":"(now developing) make latex great again. new latex IDE. material design.","archived":false,"fork":false,"pushed_at":"2017-04-13T10:21:41.000Z","size":9509,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-26T14:45:58.178Z","etag":null,"topics":["editor","ide","latex","material-design","python","tex","text-editor"],"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/RyosukeCla.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":"2017-02-10T08:03:08.000Z","updated_at":"2017-05-04T20:23:30.000Z","dependencies_parsed_at":"2023-07-18T15:00:37.297Z","dependency_job_id":null,"html_url":"https://github.com/RyosukeCla/XeThon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RyosukeCla/XeThon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyosukeCla%2FXeThon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyosukeCla%2FXeThon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyosukeCla%2FXeThon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyosukeCla%2FXeThon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RyosukeCla","download_url":"https://codeload.github.com/RyosukeCla/XeThon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RyosukeCla%2FXeThon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31771798,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T20:17:16.280Z","status":"ssl_error","status_checked_at":"2026-04-13T20:17:08.216Z","response_time":93,"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","ide","latex","material-design","python","tex","text-editor"],"created_at":"2024-11-13T12:18:59.938Z","updated_at":"2026-04-13T21:31:24.263Z","avatar_url":"https://github.com/RyosukeCla.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XeThon\n\nsuper tex IDE\n\n# Current Progress\n![current progress](./for_readme/current_view.png)\n\n## Setup\nIf nodejs isn't installed in your os, you need to install nodejs. Though there are several ways to install nodejs, I show you one way.\n\nFirst, install homebrew if you don't have.\n```\n$ /usr/bin/ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"\n\n$ brew -v\nhomebrew x.x.x\n```\n\nThen, with homebrew, install nodebrew which is in use to manage nodejs.\n```\n$ brew install nodebrew\n\n$ nodebrew setup\n\n$ nodebrew help\n```\n\nAnd install nodejs.\n```\n$ nodebrew install-binary v7.5.0\n\n$ nodebrew use v7.5.0\n\n$ vim ~/.bash_profile\n\n# Add this code in bash_profile. And press \" i \" key to insert code with vim.\nexport PATH=$HOME/.nodebrew/current/bin:$PATH\n\n# Then press three keys to save and close bash_profile.\n:wq\n\n$ source ~/.bash_profile\n\n$ node -v\nv7.5.0\n```\n\nFinally, you can setup our develop environment.\n```\n$ git clone https://github.com/RealTwo-Space/XeThon.git\n\n$ cd XeThon\n\n$ npm install\n```\n\nNow, you have just installed requirements to develop this project. So let's develop!\n\nIf you want to start up this app, run this command.\n```\n$ npm start\n```\n\nAnd, if you want to build this app, try this command.\n```\n$ npm run build\n```\n\n## Utilities\n\n1. generate a bunch of react component with redux and scss\n```\n$ bin/react/react.sh generate \u003cComponentName\u003e\n```\n\n2. auto-compile sass\n```\n$ npm run sass\n```\n\n### gen a bunch of react component with redux and scss\nBefore using this command, you have to check weather gnu-sed is installed in your os or not. That is because this generator uses gnu-sed to auto-import. So if you don't have gnu-sed, install it with homebrew.\n```\n$ brew install gnu-sed\n```\n\nIf you want to create a set of react component with redux, run this command.\n```\n$ bin/react/react.sh generate \u003cComponentName\u003e\n```\nDomain folder and files (component, reducer, action, scss) will be created. And reducer and scss will be imported to rootReducer.jsx and style.scss automatically.\n\n```\napp/frontend/\ncomponentName _ ComponentName.jsx\n             |_ componentNameAction.jsx\n             |_ componentNameReducer.jsx\n\napp/frontend/assets/sass/component/_compoentName.scss\n```\n```\napp/frontend/rootReducer.jsx\n\n//reducers import\nimport componentName from './componentName/componentName';\n\nconst rootReducer = combineReducers({\n//reducers\n  componentName,\n});\n```\n```\napp/assets/sass/style.scss\n\n//components\n@import \"components/compoentName\";\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryosukecla%2Fxethon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryosukecla%2Fxethon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryosukecla%2Fxethon/lists"}