http_parser 4.0.0-nullsafety copy "http_parser: ^4.0.0-nullsafety" to clipboard
http_parser: ^4.0.0-nullsafety copied to clipboard

outdated

A platform-independent package for parsing and serializing HTTP formats.

example/example.dart

// Copyright (c) 2020, the Dart project authors.  Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:http_parser/http_parser.dart';

void main() {
  final date = DateTime.utc(2014, 9, 9, 9, 9, 9);
  print(date); // 2014-09-09 09:09:09.000Z

  final httpDateFormatted = formatHttpDate(date);
  print(httpDateFormatted); // Tue, 09 Sep 2014 09:09:09 GMT

  final nowParsed = parseHttpDate(httpDateFormatted);
  print(nowParsed); // 2014-09-09 09:09:09.000Z
}
208
likes
0
pub points
100%
popularity

Publisher

verified publisherdart.dev

A platform-independent package for parsing and serializing HTTP formats.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

charcode, collection, source_span, string_scanner, typed_data

More

Packages that depend on http_parser