https://github.com/axetroy/url-parse
An advanced url parser supporting git urls too.
https://github.com/axetroy/url-parse
dart dartlang git parser url
Last synced: about 2 months ago
JSON representation
An advanced url parser supporting git urls too.
- Host: GitHub
- URL: https://github.com/axetroy/url-parse
- Owner: axetroy
- License: mit
- Created: 2017-03-02T08:17:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-03-14T08:59:13.000Z (over 6 years ago)
- Last Synced: 2025-04-09T11:14:18.889Z (about 1 year ago)
- Topics: dart, dartlang, git, parser, url
- Language: Dart
- Homepage: https://pub.dartlang.org/packages/url_parse
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# url-parse
[](https://travis-ci.org/axetroy/url-parse)


An advanced url parser supporting git urls too.
## Usage
```dart
import 'package:url_parse/url-parse.dart' show urlParse;
void main(){
Map httpUrlInfo = urlParse('https://www.google.com');
Map gitUrlInfo = urlParse('git+https@github.com:axetroy/protocols.git');
print(httpUrlInfo);
print(urlInfo);
}
```
## Test
```bash
./TEST
```
## Contribute
```bash
git clone https://github.com/axetroy/url-parse.git && cd ./url-parse
pub get
./TEST
```
## LICENSE
The [MIT License](https://github.com/axetroy/url-parse/blob/master/LICENSE)