Introduction
Documentation for Ask version 1.5.0
Last updated
Documentation for Ask version 1.5.0
Last updated
Ask is an open source, dynamic, and transpiled programming language built for building backends and APIs. Ask directly transpiles to Python, more specifically Flask.
Built-in JWT Authentication.
Super Simple Database Management.
Syntax Inspired by Python.
Built-in CORS Support.
Reduces Boilerplate.
Compatible with Python*
* = You can import external Python modules and call them from you Ask code.
Ask's syntax is heavily inspired by Python, and can almost be considered to be a superset of Python. This means that picking up Ask is super easy if you’re already familiar with Python.
The main idea behind Ask is to simplify common backend actions (e.g. working with databases). Building a full database CRUD REST API with JWT authentication in Ask is very straight forward and simple and requires virtually zero lines of boilerplate code and no setup whatsoever.
Ask is a transpiled language (kind of like TypeScript) which means that it compiles the source code to another language that has a similar level of abstraction. In Ask's case, the target language is Python, more specifically a Flask app.
Flask is a very popular and well-established web framework for Python, so there's already a lot of tools, and services for deploying Flask apps.
The transpiled app is completely standalone and doesn't require Ask in any way.
Here is the same basic app with one GET route written in Ask and in Python with Flask.
This is what the same application would look like in Flask.
As you can see Ask hides away all the clutter and boilerplate.