Skip to content

Commit

Permalink
Initialize v2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
assnctr committed Jan 8, 2019
0 parents commit c290998
Show file tree
Hide file tree
Showing 64 changed files with 3,779 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"presets": ["@babel/env", "@babel/react"],
"plugins": ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime", ["@babel/plugin-proposal-object-rest-spread", { "useBuiltIns": false }]],
"env": {
"development": {
"plugins": ["react-hot-loader/babel"]
}
}
}
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
npm-debug.log
settings.unfx.parser.json
/public/*.js
/.vscode
dist
package-lock.json
tests
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 assnctr

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Unfx Proxy Parser
Unfx Proxy Parser - Open source proxy parser / grabber with links crawling.

With configured hot module replacement. You can use this as electron-react-redux-postcss [template](https://github.com/assnctr/hot-electron-react-redux-postcss).

Download latest build [here](https://github.com/assnctr/unfx-proxy-parser/releases).

![](https://i.ibb.co/TRMR5P5/1prsr2-0-0.png)
![](https://i.ibb.co/DgGqX4d/3prsr2-0-0.png)

## Features
- Parsing from sites with tables
- Parsing from primitive sites
- Deep links crawling
- Follow third-party links
- Sorting proxies by countries

## Results
Saving proxies in `ip` : `port` format.

**NOTE:** `Double click` - select/deselect all.

## Updates
Auto checking at updates and notification is latest version available.

## Openproxy.space resource:
* [Open Proxy Space](https://openproxy.space) - It's Largest open proxy lists database. Our proxy lists updated in real-time.
* [Daily Proxy Lists](https://openproxy.space/lists/) - Daily updated proxy lists archive. Dump from database. Sorted by protocols.
* [API](https://openproxy.space/api) - Openproxy api - build own app based on our open proxy space.

## IP Location database
This product includes GeoLite2 data created by MaxMind, available [here](https://dev.maxmind.com/geoip/geoip2/geolite2/).
Binary file added files/GeoLite2-Country.mmdb
Binary file not shown.
122 changes: 122 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
{
"name": "unfx-proxy-parser",
"version": "2.0.0",
"main": "public/main.js",
"license": "MIT",
"scripts": {
"build": "run-p build:*",
"build:main": "cross-env NODE_ENV=production webpack -p --config webpack.config.main.babel.js",
"build:renderer": "cross-env NODE_ENV=production webpack -p --config webpack.config.renderer.babel.js",
"start": "run-p start:*",
"start:main": "electron --require @babel/register src/index",
"start:renderer": "cross-env NODE_ENV=development webpack-dev-server -d --config webpack.config.renderer.babel.js",
"package": "npm run build && electron-builder --win",
"publish": "npm run build && electron-builder --linux --win --publish always"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.5",
"babel-loader": "^8.0.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"electron": "^4.0.0",
"electron-builder": "^20.36.2",
"electron-devtools-installer": "^2.2.4",
"electron-react-devtools": "^0.5.3",
"file-loader": "^2.0.0",
"js-flock": "^3.5.3",
"mmdb-reader": "*",
"npm-run-all": "^4.1.3",
"postcss-color-mod-function": "^2.4.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12",
"react-markdown": "^4.0.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"request-progress": "^3.0.0",
"request-promise": "^4.2.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"build": {
"appId": "com.github.assnctr.unfxproxyparser",
"win": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"ia32"
]
},
{
"target": "nsis-web",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "/public/icons/icon.ico",
"artifactName": "${name}-v${version}-${arch}-${os}.${ext}"
},
"linux": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"ia32",
"arm64",
"armv7l"
]
}
],
"icon": "/public/icons/icon.ico",
"artifactName": "${name}-v${version}-${arch}-${os}.${ext}"
},
"publish": [
{
"provider": "github",
"owner": "assnctr",
"repo": "unfx-proxy-parser",
"private": false
}
],
"productName": "Unfx Proxy Parser",
"copyright": "2019 assnctr (openproxy.space)",
"extraResources": [
"./files/**"
],
"portable": {
"artifactName": "${name}-v${version}-${arch}-${os}-portable.${ext}"
},
"nsisWeb": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"differentialPackage": true
}
}
}
11 changes: 11 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
plugins: {
'postcss-preset-env': {
stage: 4,
features: {
'nesting-rules': true
}
},
'postcss-color-mod-function': {}
}
};
Binary file added public/fonts/Lato-Black.ttf
Binary file not shown.
Binary file added public/fonts/Lato-BlackItalic.ttf
Binary file not shown.
Binary file added public/fonts/Lato-Bold.ttf
Binary file not shown.
Binary file added public/fonts/Lato-BoldItalic.ttf
Binary file not shown.
Binary file added public/fonts/Lato-Hairline.ttf
Binary file not shown.
Binary file added public/fonts/Lato-HairlineItalic.ttf
Binary file not shown.
Binary file added public/fonts/Lato-Italic.ttf
Binary file not shown.
Binary file added public/fonts/Lato-Light.ttf
Binary file not shown.
Binary file added public/fonts/Lato-LightItalic.ttf
Binary file not shown.
Binary file added public/fonts/Lato-Regular.ttf
Binary file not shown.
Binary file added public/icons/icon.ico
Binary file not shown.
11 changes: 11 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Unfx Proxy Parser</title>
</head>
<body>
<div id="root"></div>
<script src="renderer.js"></script>
</body>
</html>
Loading

0 comments on commit c290998

Please sign in to comment.