- We want to build a platform which contents open-source projects. You can list all published open-source projects and also you can publish your project too from GitHub.
You have 2 things you can do:
- Either open an issue about a bug, feature request, page, or component,
- Or close an issue, by writing and/or implementing it in your own fork!
We use yarn as the package manager
yarn install
yarn start
- TODO
Add your repository with JavaScript
fetch("http://localhost:8080/repository",{"headers": {"accept": "application/json, text/plain, */*","content-type": "application/json;charset=UTF-8",},"referrer": "http://localhost:3000/","referrerPolicy": "strict-origin-when-cross-origin","body": "{\"url\":\"https://github.com/expressjs/express\"}","method": "POST","mode": "cors","credentials": "omit"})Read issues in any repository
constquery=`{ issues(pathname: "/cagatay/lazy/") { repository_url title user { login } created_at }}`fetch(`http://localhost:8080/graphql?query=${query}`).then(res=>res.json()).then(console.log)Additionally, you can do
yarn run lintto see formatting errors andyarn run lint:fixto fix them. Don't worry if you forgot to lint your code! Someone will definitely fix it in another commit for you 😃
