-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Dart GSoC 2021 Project Ideas
A list of Google Summer of Code project ideas for Dart.
For GSoC related discussions please use the dart-gsoc group.
Potential mentors
All projects assume familiarity with Dart (and sometimes Flutter). Aspiring applicants are encouraged to learn Dart and try to write some code.
Applicants are welcome to find and fix bugs in Dart or some of the packages written by the Dart team. However, getting reviews can take a long time as code owners may be busy working on new features. So instead of requiring applicants to fix a good first bug, we suggest that applicants write a working code sample relevant for the proposed project.
The code sample can be attached to the application as a gist, or simply github repository. Suggested ideas below includes proposed "Good Sample Projects".
Do not spend too much energy on this piece of sample code, we just want to see that you can code something relevant -- and that this sample code can run and do something non-trivial. Be aware that we have a limited number of mentors available, and will only be able to accept a few applicants.
Applications can be submitted through the summerofcode.withgoogle.com website. Students are encouraged to submit draft proposals, ideally linking to a Google Docs with permission for mentors to comment. See also the student guide on writing a proposal.
IMPORTANT: Remember to submit final proposals before the April 13th deadline.
-
Possible Mentor(s):
[email protected]
- Difficulty: medium
- Skills: Dart, Flutter, Java
Description:
Curate and implement live templates in the Flutter and Dart IntelliJ plugins. After this, the candidate may work in other feature areas of the Dart and Flutter IntelliJ plugin stack.
Good Sample Project To start follow the directions here, https://github.com/flutter/flutter-intellij/blob/master/CONTRIBUTING.md, to get the Flutter plugin for IntelliJ compiling and running locally from source. Review the current set of provided templates here in these files in GitHub, then review the feature in other languages and frameworks with an eye on having our live templates feel consistent with IntelliJ.
-
Possible Mentor(s):
[email protected]
,[email protected]
- Difficulty: medium
- Skills: dart, http, html, css, jwt,
Description:
Write a standalone pub server following the hosted pub repository specification. Goal could be to allow vendors to host private pub repositories for commercial packages, and/or facilitate internally mirroring of pub.dev for organizations with outgoing network restrictions. In addition to implementing a server, certain tweaks to the pub
tool might be required for authentication with 3rd party servers.
Good Sample Project Figure out how to make a webserver in Dart using shelf, workout how to render HTML templates, convert Dart to JS for use client-side, handle REST requests and generally familiarize yourself with the Dart server stack. A hello world server than can serve files from disk, show some HTML and handle a simple REST request in JSON would be a good sample project.
-
Possible Mentor(s):
[email protected]
,[email protected]
- Difficulty: advanced
- Skills: dart, git-wizardry,
Description:
Currently, pubspec.yaml
can contain
git dependencies.
However, pub
does not support walking through the list of tags in a git repository
and finding all versions of the pubspec.yaml
in the repository. Hence, a git
dependency always has exactly one version. What if pub
could find all versions
of a package from a git repository, and use those versions in the solver.
Good Sample Project
Explore existing support for git
dependencies in Dart, figure out how to work
with --references
in git repositories, as well as commands for listing a
specific file pubspec.yaml
from various tags in a repository. Explore to what
extend tags and files can be listed remotely without downloading
the entire repository.
A good sample project, might be able to output pubspec.yaml
for all tags in git
given a specific git repository and path to pubspec.yaml
.
-
Possible Mentor(s):
[email protected]
- Difficulty: easy
- Skills: Dart programming skills; text parsing.
Description:
Write a Dart package for detecting SPDX license from a LICENSE
file following
the SPDX License List Matching Guidelines
or text similarity like licensee does.
A goal would be properly represent the license of a package on pub.dev with an
SPDX identifier.
Stretch goal might be to handle LICENSE
files with multiple licenses and
display an SPDX license expression on pub.dev.
Getting Started Try writing a small sample program that can fetch one of the SPDX master files and print it to terminal as markdown. Don't make it too perfect, just figure out how to parse the XML. For the proposal, it would be valuable to include:
- Comparison of text similarity approach to SPDX matching guidelines,
- References to relevant documentation.
- A discussion of strategies for handling complicated cases with multiple licenses in the same file.
- An API outline for the package, what does the function signatures look like?
- List of features you would consider adding? what are the stretch goals? What should be omitted to keep it simple/robust?
- How do we plan to test this? What test cases can we find? How can we become reasonably confident the implementation handles all corner cases?
-
Possible Mentor(s):
[email protected]
,[email protected]
- Difficulty: advanced
-
Skills: Dart,
dart:ffi
, API design, HTTP
Description:
With dart:ffi
binding to native libraries we have an opportunity to build more performant and more feature rich IO libraries than dart:io
.
Building such libraries has become one step easier by package:ffigen
which can generate the bindings for the native libraries.
In this project we would like to target HTTP by binding to Cronet's native API.
This project will be challenging.
It requires the whole dart:ffi
toolbox. For example: native resource management with finalizers and asynchronous callbacks with native ports.
Moreover, we might run into the limitations of Dart and dart:ffi
, such as not being able to choose which thread the Dart executor thread runs on.
This knowledge will be valuable in shaping future work on dart:ffi
.
Good Sample Project
Try writing a small web server in Dart with dart:io
tutorial, and replace the dart:io
HTTP use with your own HTTP class which uses Cronet underneath with dart:ffi
and package:ffigen
.
You can go one step further by comparing the performance compared to dart:io
, or using an HTTP feature that's not enabled in dart:io
.
## **Idea:** {{title}}
- **Possible Mentor(s)**: `{{email}}`
- **Difficulty**: {{easy | medium | advanced}}
- **Skills**: {{keyword}}; ...
**Description**:
{{description}}
**Good Sample Project**
{{how to get started; good first bugs; ideas for code samples; warm-up exercises}}
----
Important
The wiki has moved to https://github.com/dart-lang/sdk/tree/main/docs; please don't edit the pages here.