> For the complete documentation index, see [llms.txt](https://docs.schemajs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.schemajs.com/fundamentals/module-imports.md).

# Module Imports

SchemaJS allows users to write modular code following the ES standard.&#x20;

```typescript
import * from "./module.ts"
```

## Online imports

It is possible to import modules from URLs, such as the following:

```typescript
import { SJS_HELLO_WORLD } from "https://gist.githubusercontent.com/andreespirela/c482ff9571967ad87d669de2116da670/raw/446ab06eff7fc561453184409e62da53063823c3/index.ts"
```
