Skip to content

V4 #157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft

V4 #157

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["apps/**", "packages/**"],
extends: ["@workspace/eslint-config/library.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
},
}
31 changes: 27 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ build/Release
# Dependency directories
node_modules/
jspm_packages/
.pnp
.pnp.js

# TypeScript v1 declaration files
typings/
Expand Down Expand Up @@ -69,9 +71,29 @@ typings/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# Local env files
.env
.env.test
.env.local
.env.development.local
.env.test.local
.env.production.local


# Testing
coverage

# Turbo
.turbo

# Vercel
.vercel

# Build Outputs
.next/
out/
build
dist


# parcel-bundler cache (https://parceljs.org/)
.cache
Expand Down Expand Up @@ -104,5 +126,6 @@ dist
# TernJS port file
.tern-port

# .DS_Store
.DS_Store
# Misc
.DS_Store
*.pem
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

Empty file added .npmrc
Empty file.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"**/node_modules": true,
"**/.build": true,
"**/.lock": true,
"**/*.code-search": true
"**/*.code-search": true,
"**/.turbo": true,
"**/.next": true,
"**/.archive": true
}
}
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,14 @@ fetch("https://proxy.cors.sh/https://example.com/");
- [gridaco/playground.cors.sh](https://github.com/gridaco/playground.cors.sh)
- [hoppscotch/hoppscotch](https://github.com/hoppscotch/hoppscotch)


## Projects using CORS.SH

- https://github.com/IMGROOT2/algo
- https://github.com/alejandroch1202/dollar-monitor
- https://github.com/Iconem/search-satellite-imagery/
- https://github.com/PavelLaptev/JSON-to-Figma
- https://github.com/TomRadford/shootdrop



## Contributing

```bash
Expand All @@ -52,9 +50,14 @@ git submodule update --init --recursive

2. The original code behind cors proxy is by Rob wu's cors-anywhere and the playground is forked from hoppscotch. both licensed under MIT, and our project cors.sh is also licensed under MIT License.


## TODOs

- Cost optimization - make it more cheap & provide free version to all.
- Management console - Enable usesrs to create projects as much as they want.
- OSS Application pipeline - Make OSS developers to get their api key right-on and get verified later.

## Misc

**Design file**

[Figma](https://www.figma.com/file/aPfdtNb1aGFIN9p05cmmVY/cors.sh)
29 changes: 0 additions & 29 deletions cli/bin.ts

This file was deleted.

12 changes: 0 additions & 12 deletions cli/index.ts

This file was deleted.

5 changes: 0 additions & 5 deletions cli/jes.config.js

This file was deleted.

53 changes: 0 additions & 53 deletions cli/package.json

This file was deleted.

5 changes: 0 additions & 5 deletions cli/readme.md

This file was deleted.

12 changes: 0 additions & 12 deletions cli/tsconfig.json

This file was deleted.

34 changes: 0 additions & 34 deletions cli/update/index.ts

This file was deleted.

3 changes: 0 additions & 3 deletions cli/version/index.ts

This file was deleted.

Loading