An open API service indexing awesome lists of open source software.

https://github.com/mogeko/quine-js

This is a selfrep (quine) program.
https://github.com/mogeko/quine-js

Last synced: 4 months ago
JSON representation

This is a selfrep (quine) program.

Awesome Lists containing this project

README

          

# quine-js

This is a selfrep (quine) program. It returns its own source code.

## Usage

As a Node.js module:

```js
import { quine } from "quine-js";

console.log(quine());
```

As a CLI tool:

```sh
npx quine-js
```

## References

- [Quines (self-replicating programs)](http://www.madore.org/%7Edavid/computers/quine.html)

## License

The code in this project is released under the [MIT License](./LICENSE).