GithubHelp home page GithubHelp logo

18f / crt-django Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 2.0 25.5 MB

Moved to usdoj-crt/crt-portal

Home Page: https://github.com/usdoj-crt/crt-portal

Python 63.72% HTML 18.75% Shell 0.11% Dockerfile 0.10% JavaScript 6.72% SCSS 10.61%

crt-django's Introduction

This repo is an archival copy of the code that runs civilrights.justice.gov.

In order to be more responsive to the public’s changing communication needs and the increased reporting volume,the Civil Rights Division, in close collaboration with 18F, launched a user-friendly online submission experience at civilrights.justice.gov. The project has transformed the way the Civil Rights Division collects, sorts, and responds to public reports of civil rights violations.

See the project in it's new home: https://github.com/usdoj-crt/crt-portal

Here is a blog post about the launch of this project with more details.

CircleCI

Contents

Local set up

Install Docker

https://www.docker.com/get-started

Create ssh key and add it to GitHub.

Clone the project locally:

git clone [email protected]:usdoj-crt/crt-portal.git

In the top level directory create a .env file in the top of your directory and set SECRET_KEY to a long, random string.

SECRET_KEY=''

To build the project You will need to build the project for the first time and when there are package updates to apply.

docker-compose up -d --build

To run the project This is a quicker way to start the project as long as you don't have new packages to install.

docker-compose up

Visit the site locally at [http://0.0.0.0:8000/report] πŸŽ‰

Create a superuser for local admin access

 docker-compose run web python /code/crt_portal/manage.py createsuperuser

To add some test data with the form http://0.0.0.0:8000/report and then you can check it out in the backend view http://0.0.0.0:8000/form/view and the admin view at http://0.0.0.0:8000/admin.

Generate the SASS for the front end with gulp:

If you are doing front end work, you will want to have gulp compile the css so you can instantly see changes.

To ensure we are all using the same versions of our front-end dependencies, we use nvm to peg a version of node to this project.

Check that nvm is installed with nvm --version.

If not, run the following command to install it:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash
source ~/.bash_profile

If you get an error, and don't have a bash_profile file, create one first with touch ~/.bash_profile, then run the command above again.

Then, if this is your first time installing the project or nvm, run nvm install.

Finally, nvm use && npm install

Now to compile the sass files into css, run:

npm run sass:watch

Also note, that the staticfiles folder is the destination of all static assets when you or a script runs manage.py collectstatic so don't make your changes there, or they will be overwritten.

Running common tasks

Migrations

In Django, when you update the data models you need to create migrations and then apply those migrations, you can do that with:

docker-compose run web python /code/crt_portal/manage.py makemigrations
docker-compose run web python /code/crt_portal/manage.py migrate

Installing a new Python package

To install a new Python package, run:

docker-compose run web pipenv install name-of-package

SSH'ing into Docker locally

To ssh into your local Docker web container run:

docker exec -it crt-portal_web_1 /bin/bash

Logging into Docker database locally

To log into your local Docker database for debugging purposes, first run:

docker exec -it crt-portal_db_1 /bin/bash

Then from, within the container, you can run:

psql -U postgres

As a logged-in local Postgres user, you can run queries directly against the database, for example: select * from cts_forms_report; to see report data in your local database.

Public and private webpages

In production, we use django-auth-adfs and new endpoints are behind authentication by default. To create a public page, you must update LOGIN_EXEMPT_URLS In settings.py to include the endpoint(s) which are to be available without requiring authentication.

We also explicitly add login required to views and functions that need authentication. If you are making a new path that requires authentication, add a test the login required test class.

I18N

Important commands to use during internationalization (i18n):

When you run makemessages, Django will search through .py, .txt, and .html files to find strings marked for translation. Django finds these strings through the gettext function or its lazy-loading equivalent (in Python) or the trans function (in HTML). This adds the marked strings to .po files where translators will do their work.

docker-compose run -w /code/crt_portal/cts_forms web django-admin makemessages -l es

After the strings translated, the translation can be compiled back to Django-readable .mo files using run compilemessages:

docker-compose run -w /code/crt_portal/cts_forms web django-admin compilemessages

Adding support for a new language

To add support for a new language, first generate a .po file for the new language using the makemessages command described above. Once the file is generated, open it and set the Language metadata item near the top of the file. This value should be either the language name (Spanish, Chinese Traditional, Korean, etc.) or the language code (es, zh, ko, etc.). In order to properly translate plurals, you will also need to set the Plural-Forms metadata item. Translators should provide and/or verify the appropriate value for this field.

Next, use po-to-xls to convert the .po file to an Excel spreadsheet. This spreadsheet can be generated in a tmp or working directory, and should not be commited to source control. This spreadsheet can be distributed to the translation staff to fill in.

po-to-xls path/to/new/django.po -o /tmp/new-language-translations.xlsx

Once the translation process is complete and the spreadsheet contains the translations, it is time to convert it back into a .po file. This .po file is transient and should be generated in a tmp or working directory. This can be done using the same tool as above:

xls-to-po <language> /tmp/new-language-translations.xlsx /tmp/updated.po

* The language argument in the xls-to-po command should match the value that was entered in the Language metadata field in the original .po file.

At this point, we have updated.po, which contains the translated strings, and we have django.po which contains some useful comments (e.g. source files and line numbers for each string) that we'd like to preserve. So, the last step is to merge these two files using msgmerge:

msgmerge /tmp/updated.po path/to/django.po -o path/to/django.po

django.po now contains the comments generated by makemessages, along with the translation strings from updated.po.

Now that the translations are available, we need to update the LANGUAGES variable in settings.py to include our new language. Lastly, run compilemessages as described above, or rebuild the application with:

docker-compose up --build

Hard reset with a fresh database

If your local database is in a wonky state, you might want to try tearing it all down and rebuilding from scratch.

First, shut down any containers you have running locally. Then run:

docker system prune --volumes

The volumes are the data elements in Docker. Note that you will need to re-create any local user roles after running this command, and the database will be in an empty state, with no complaint records.

⚠️ Note that this command will prune all containers, images, and caches on your local machine -- not just the crt-portal project.

Tests

Tests run automatically with repos that are integrated with Circle CI. You can run those tests locally with the following instructions.

Unit tests

Run unit test on Windows:

  1. Ensure docker is running
  2. Start a powershell as admin (git bash has issue running ssh console in docker)
  3. Find the id for the web container
     docker container ls
    
  4. Identify the id for the crt-portal_web_1
  5. SSH to web container in docker:
    docker exec -it [id for the crt-portal_web goes here] /bin/bash (see below)
    docker exec -it 0a6039095e34 /bin/bash
    
  6. Once you are in the SSH ./code run the test command below:
    python crt_portal/manage.py test cts_forms
    
  7. If you're lucky your tests will all pass otherwise, inspect the output to find the failing tests and errors to work on!

Run unit test on MAC:

You can also run project tests using docker with:

docker-compose run web python /code/crt_portal/manage.py test cts_forms --parallel

This will run all of the tests located in the tests folder. where the business logic tests live.

The test suite includes test_all_section_assignments.py, a script that generates a csv in the /data folder which has the relevant permutations of form fields and runs the out put from the section assignment function. If you are updating section assignments, you will want to edit the csv in data/section_assignment_expected.csv to what the new assignment should be. Additionally, if there are new factors to consider for routing, you will want to add those factors to the test so that they are accounted for.

You can also run a subset of tests by specifying a path to a specific test class or module. For example:

docker-compose run web python /code/crt_portal/manage.py test cts_forms.tests.test_forms.ComplaintActionTests --parallel

We use the unit tests for calculating code coverage. Tests will fail if code coverage is below 89%. You can run code coverage locally with:

docker-compose run web coverage run --source='.' /code/crt_portal/manage.py test cts_forms --parallel
docker-compose run web coverage report --fail-under=89 -m

The -m will give you the line numbers in code that that are not tested by any unit tests. You can use that information to add test coverage.

Please keep in mind that the quality of tests is more important than the quantity. Be on the look out for key functionality and logic that can be documented and confirmed with good tests.

πŸƒβ€β™€οΈπŸƒβ€β™‚οΈ To speed up your tests, after you have migrated your database at least once, you can run:

docker-compose run web python /code/crt_portal/manage.py test --settings=crt_portal.test_settings cts_forms

That will create a file locally that tells your machine to not load zip codes on migration. These are not needed for tests and take a while.

Accessibility test

For accessibility testing with Pa11y, we generally want a test on each unique view. You can run Pa11y locally, if you have npm installed locally:

  1. If you are doing this for the first time, log into your local admin and make an account for testing at localhost:8000/admin/auth/user/add/ The user name is pa11y_tester password is imposing40Karl5monomial. Never make this account in the dev or staging environments. Circle testing happens in a disposable database and these are not run against live sites. (Prod doesn't use password accounts but no reason to make it there either.)
  2. Run export PA11Y_PASSWORD=imposing40Karl5monomial in the command line.
  3. run npm run test:a11y

This will run all the tests, look in package.json for a listing of tests, if you want to run them individually. See full accessibility testing guidelines in our A11y plan.

Code style tests

You can check for Python style issues by running flake8:

docker-compose run web flake8

If you have a a reason why a line of code shouldn't apply flake8 you can add # noqa, but try to use that sparingly.

You can check for JS style issues by running Prettier:

npm run lint:check

Prettier can automatically fix JS style issues for you:

npm run lint:write

Static security test

You can scan the code for potential python security flaws using bandit. Run bandit manually:

docker-compose run web bandit -r crt_portal/

If there is a false positive you can add # nosec at the end of the line that is triggering the error. Please also add a comment that explains why that line is a false positive.

Security scans

We use OWASP ZAP for security scans. Here is an intro to OWASP ZAP that explains the tool. You can also look at the scan configuration documentation.

You can run and pull down the container to use locally:

docker pull owasp/zap2docker-weekly

Run OWASP ZAP security scans with docker using the GUI:

docker run -u zap -p 8080:8080 -p 8090:8090 -i owasp/zap2docker-weekly zap-webswing.sh

you can see the GUI at http://localhost:8080/zap/

Do use caution when using any "attack" tests, we generally run those in local or sandboxed environments.

To stop the container, find the container id with:

docker container ls

Then you can stop the container with:

 docker stop <container_id>

Run OWASP ZAP security scans with docker using the command line. Here is an example of running the baseline, passive scan locally targeting the development site:

docker run -v $(pwd):/zap/wrk/:rw -t owasp/zap2docker-weekly zap-baseline.py \
-t https://crt-portal-django-dev.app.cloud.gov/report/ -c .circleci/zap.conf -z "-config rules.cookie.ignorelist=django_language"

That will produce a report locally that you can view in your browser. It will give you a list of things that you should check. Sometimes there are things at the low or informational level that are false positives or are not worth the trade-offs to implement. The report will take a minute or two to generate.

End-to-End tests

We're using Playwright for automated end-to-end testing. Currently this test suite can be run locally by developers with the following command.

pipenv run pytest crt_portal/cts_forms/tests/integration/*.py --base-url=http://localhost:8000

These tests are automatically executed for every pull request against a development instance in CircleCI.

As we build out our end-to-end test suite it will be further automated and integrated into our CI/CD pipeline.

Browser targeting

For the general public facing pages, we regularly test against Microsoft Edge, Internet Explorer 11, and Google Chrome, and occasionally test against Safari and Firefox.

For the staff-only pages, we only support the Microsoft Edge and Google Chrome browsers. Internet Explorer 11 will not work.

cloud.gov set up

You only need to get the services stood up and configure the S3 bucket once.

For working with cloud.gov directly, you will need to install the cloud foundry cli. That will allow you to run the cf commands in a terminal.

First, login to cloud.gov at https://login.fr.cloud.gov/login and then, get a passcode https://login.fr.cloud.gov/passcode.

Log on with cf login -a api.fr.cloud.gov --sso-passcode <put_passcode_here>

Initial cloud.gov set up

First, log into the desired space.

Create postgres DB and S3 with development settings:

cf create-service aws-rds shared-psql crt-db
cf create-service s3 basic-public crt-s3
cf create-service s3 basic sso-creds

Or, for prod use the following production settings:

cf create-service aws-rds medium-psql-redundant crt-db
cf create-service s3 basic-public crt-s3
cf create-service s3 basic sso-creds

The medium-psql-redundant instance will provide a more resilient database approved for production and sso-creds is a private bucket used for authentication- see more details on that in the single sign on docs.

Store environment variables

cf cups VCAP_SERVICES -p SECRET_KEY

when prompted give it the secret key

You will needed to enable CORS via awscli, for each bucket instructions are here: https://cloud.gov/docs/services/s3/#allowing-client-side-web-access-from-external-applications

Create a service account for deployment for each space you are setting up. (Replace "SPACE" with the name of the space you are setting up.)

cf create-service cloud-gov-service-account space-deployer crt-service-account-SPACE
cf create-service-key crt-service-account-SPACE crt-portal-SPACE-key
cf service-key crt-service-account-SPACE crt-portal-SPACE-key

Those credentials will need to be added to CircleCI as environment variables: CRT_USERNAME_SPACE CRT_PASSWORD_SPACE (replace "SPACE" with the relevant space).

Right now, the route is set for the production space, we will want to pass in different routes for different spaces but that can be handled when we add the automation.

To deploy manually, make sure you are logged in, run the push command and pass it the name of the manifest for the space you want to deploy to:

cf push -f manifest_space.yaml

That will push to cloud.gov according to the instructions in the manifest and Profile.

A network policy needs to be configured to allow communication between our web application and the ClamAV REST API.

Direct traffic from the portal to the ClamAV REST API:

cf add-network-policy crt-portal-django --destination-app clamav-rest --protocol tcp --port 9000

User roles and permissions

As of October 2019, we have two user roles in the system:

  • Staff. Logged-in staff can view the table of complaints at /form/view.

  • Admin (superusers). Logged-in admins can add and remove users, adjust form settings such as the list of protected classes, and view the table of complaints at /form/view.

Please update the Accounts Spreadsheet if you create or modify any user accounts.

As we build out the product, we expect to add more granular user roles and permissions.

For production, we use DOJ's Single Sign on for authentication. For the ADFS authentication, you need to make sure that public urls are listed in settings.py in the AUTH_ADFS section.

For the dev and staging site, you will want to make sure the @login_required decorator are on all views that need authentication.

Setting up single sign on is documented in docs/maintenance_or_infrequent_tasks.

Create and update admin accounts

Need to ssh to create superuser (would like to do this automatically in another PR):

cf ssh crt-portal-django

Once in, activate local env:

/tmp/lifecycle/shell

Then, you can create a superuser:

python crt_portal/manage.py createsuperuser

Or change a user's password:

python crt_portal/manage.py changepassword {{username}}

Deployment

We deploy from CircleCI. The circle config contains rules that will deploy the site to different environments using a set of rules.

We leverage the CircleCI dependency caching feature to accelerate the build process. There are times, such as when upgrading to a new runtime version, when it becomes neccesary to clear the cached dependencies manually. This can be done by incrementing the value of the CACHE_VERSION environment variable from the CircleCI project settings.

GitFlow is a tool that can make it easier to handle branching. On a Mac with homebrew it can be installed with:

brew install git-flow

Then, in the top level folder of the project, you will want to run:

git flow init

We are using the defaults, so you can press enter for all the set up options. You may need to type 'master' production releases if you haven't been on the master branch yet.

Deployment for each environment

  • The app will deploy to dev when the tests pass and a PR is merged into develop. You should do this in GitHub.

  • The app will deploy to stage when the tests pass and when we make or update a branch that starts with release/.

    • Make sure the develop branch is approved for deploy by the product owner
    • Look at ZenHub and see if there is anything in "Dev done" flag that for approval so those issues are in "Ready for UAT" when you make the release
    • Check out the develop branch and do a git pull origin develop
    • You can create a release with the command git flow release start <date-of-planned-relase>
    • Finally, push the release branch git push origin release/<date-of-planned-release>
    • Create a PR from github repository for the newly pushed branch
    • Ensure base is master while creating the PR
  • The app will re-deploy to stage if a new PR is merged into a release/ branch. We do not do this often, but sometimes we want to get fixes in staging before the next release. You should do this in GitHub.

    • Make sure we understand why the PR is updating stage instead of going through the normal process -- there should be a good reason as to why.
    • Verify that the PR has a release/<date-of-planned-release> branch as a base branch
    • If all looks good, merge the PR via Github "merge" button
    • Verify that tests pass and that the deploy to stage succeeded on CircleCI.
    • Note: the developer will be responsible for cherry picking or otherwise merging these staging changes back to dev.
  • The app will deploy to prod when the tests pass and a PR is merged into master. You can also do this in GitHub once you confirm approval with the product owner. If there are any merge conflicts, you will want to resolve them on the staging branch first.

    • If have not been any PRs directly to the release branch you can merge in GitHub
    • If there are PRs to the release branch merge with gitflow:
    • Approve the relese on GitHub
    • Check out the release branch and do a git pull origin release/<name-of-release>
    • Check out the master branch and do a git pull origin master
    • Check out the develop branch and do a git pull origin develop
    • Run git flow release finish
    • Check out the develop branch and do a git push origin develop
    • Once that succeeds, check out the master branch do a git push origin master

When CircleCI tries to deploy two PRs back-to-back, one of them can fail. In this case, you can restart the failed deploy process by clicking the "Rerun Workflow" button.

Hot fixes will be needed when we find urgent bugs or problems with production. This is where git-flow becomes very useful. To make the fix:

  • Check out the master branch and do a git pull origin master
  • Create a branch for your work with git flow hotfix start <name-your-hotfix>
    • This will make a new branch based on the master branch with the naming convention hotfix/name-of-hotfix
  • Commit and push your branch, make a PR that targets the master branch for review

To deploy the fix:

  • Make sure the product owner is in the loop with any errors and fixes.
  • The reviewer can test the change locally to do the review. once the reviewer is happy with it:
  • Make sure your branches are up to date
    • Check out the development branch and do a git pull origin develop
    • Check out the master branch and do a git pull origin master
  • Finish the hotfix with git flow hotfix finish This command will make sure that the fix is merged into the master and develop branches. Making sure the change is in both places, means you can test it on dev and your change won't get clobbered later.
  • Push to the develop branch, that now has the fix to trigger a deploy to the dev enviornment
  • Check that the update deployed correctly.
  • Once sastisfied, go to GitHub to approve and merge the PR
  • That will trigger a new build with the fix. Check that the fix worked

The git-flow cheatsheet is a great explainer of the git-flow tool.

Additional documentation

For more technical documentation see the docs

Adjust form autocomplete per-instance

To prevent form autocomplete on an application instance, add FORM_AUTOCOMPLETE_OFF=True as an environment variable. We are using that in staging to help mask personal data during usability testing.

To restore default behavior of allowing form autocomplete, remove the FORM_AUTOCOMPLETE_OFF flag.

Background notes

These are some technologies we are using in the build, here are some links for background.

Pipenv This is what we use to manage python packages

Postgres Here are the database docs

This is a tool for for interfacing with postgres pgcli

Docker We are using containers for local development.

USWDS We are using 2.0 as our base

Django This is the web framework

Cloud.gov This is the PaaS the app is on

Thanks for reading all the way!

crt-django's People

Contributors

alexsobledotgov avatar cantsin avatar dependabot[bot] avatar dwechsle avatar el-mapache avatar hakhalid11 avatar harikrishnagit avatar hbillings avatar ilodidoj avatar jacklynn avatar jkrzy avatar kmanubhai avatar lindsayyoung avatar mattbowles8 avatar timoballard avatar uchmok avatar

Watchers

 avatar  avatar  avatar

crt-django's Issues

Deploy static assets to cloud.gov

Right now, if you deploy the codebase the static assets aren't configured correctly,

This would fix that, so the admin and front end assets are hosted on s3 and resolve correctly.

Landing page

Mockups

Desktop

CRT Landing_Hover@2x.png

Dropdown interaction

Screen Shot 2020-05-27 at 9.20.54 PM.png

Tablet

tablet.png

Mobile

mobile copy.png

CRT View: Complaint Intake Table

UPDATED 2/25

1-View All Copy 4.png

TYPOGRAPHY

βœ‚οΈβœ‚οΈβœ‚οΈ[COPY & PASTE DOC] (https://docs.google.com/document/d/19N33lk_MRDiitfOv6BSBHJCSbEexIMNWPzEkj2myrJ8/edit)βœ‚οΈβœ‚οΈβœ‚οΈ

1-typography.png

STRUCTURE

See doc for more details
Structure.png

[A] Header

header.png

[B] Pre-table stuff (filters)

Open area spacing.png

[c] Table header

Structure Copy.png

FILTERS

1-View All Copy 9.png

Group 7.png

Future

Based on what we've heard are the most common filters, here's how I'd revise the design:
1-View All Copy 10.png

More filters button
Design could also be used as a more advanced proform or for editing
Complaint details Copy.png

Make a basic home page

This should be a quick-ish task if we want to start by porting the USWDS example.

We will need one anyway and this helps people find the form.

make sample form

make a front facing form that has the core questions for users to answer.
This is meant as a first pass to expand upon.

Freeform

All Path - Freeform.jpg

Content

Please provide details on what happened
Continued

Please describe what happened in your own words
This is your opportunity to share any additional details you think would be helpful for us to know like time, names, witnesses to the event, or anything you haven’t already stated. Document upload is not available at this time, but please describe if you have evidence you’d like to include later.

[Freeform box]
500 word(s) remaining

Annotations

All Path - Freeform.jpg

Alert states

USWDS: usa-alert--slim--warning
Changes: make text 14 instead of 16, make alert icon yellow instead of black, align icon with top of text

Subtext should say count remaining words until 500 is reach, then say "0 word remaining". If user tried to keep typing after the 100th word, then display this alert:

Screen Shot 2019-09-23 at 5.29.44 PM.png


Screen Shot 2019-09-23 at 5.34.22 PM.png

Public View: Contact - Mobile

Mockup

Contact Mobile.png

Annotations

Vertical spacing between form elements should stay the same as on desktop

Contact Mobile_annotations.png


Screen Shot 2020-06-08 at 6.00.41 PM.png

Font style changes for mobile

Screen Shot 2020-06-08 at 6.16.58 PM.png

Improve model structures

Narrative

In order for users to have the intended experience, we need to update the models. This will give us things like multiple select choices.

Background

The yaml from the hawk form has the information about what fields should have:
https://github.com/usdoj/crt-portal/blob/396e2a80de0ac8ffeebb32210f6912ca8c6a651a/config/default/webform.webform.benevolent_hawk.yml

Here is a link to advice on Django forms testing https://test-driven-django-development.readthedocs.io/en/latest/05-forms.html

Acceptence criteria

  • match the content and on the hawk form
    Though the location was not testing well so we can implement that after the next round of research findings and design.

  • have some basic tests

Add conditional logic to skip questions when they are not relevant

Narrative

As a person filling out the form, I don't want to answer questions that are not relevant to me.

Technical notes

Here is how to implement this feature with the form tools https://django-formtools.readthedocs.io/en/latest/wizard.html#conditionally-view-skip-specific-steps

you can see the current rules by looking at the visible field in the hawk yml https://github.com/usdoj/crt-portal/blob/396e2a80de0ac8ffeebb32210f6912ca8c6a651a/config/default/webform.webform.benevolent_hawk.yml

Acceptance criteria

  • we mach the logic in the hawk webform

Public view: Contact

UPDATED Mockup

UPDATED Contact - Annotations Copy.jpg

Annotations

UPDATED Contact - annotations .jpg

Screen Shot 2020-01-09 at 2.40.54 PM.png

Annotation for form elements (ignore rest of page)

All Contact 1 Copy-annotations.jpg

Alert States

USWDS: usa-alert--slim--error
Changes: make text 14 instead of 16, make alert icon red instead of black, align icon with top of text

Screen Shot 2019-09-20 at 1.38.30 PM.png


Screen Shot 2019-09-20 at 3.49.29 PM.png

Alt copy:

Email: This email address is not formatted correctly. An email address should contain an β€˜@’ symbol.

  • If email @ symbol is followed by an unexpected character:
    β€œThis email address is not formatted correctly. The β€˜@’ symbol should be followed by a letter, not a β€˜[symbol]’ symbol.
  • If email @ symbol is blank:
    β€œThis email address is not formatted correctly. The β€˜@’ symbol should be followed by a domain name (like β€˜example.com’)
  • if there is an unexpected symbol before the @:
    β€œThis email address is not formatted correctly. There cannot be a β€˜symbol before the β€˜@’ sign. (edited)

Phone: "This phone number is not formatted correctly. If you submit a phone number, it should be between 10-15. Please include the area code."

Old designs

All Contact 1 Copy-annotations Copy.jpg

Dockerize app

Local installs have been a bear, so let's have something that gets people going with a docker command.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.