https://github.com/magicalmonke/punycode-encoder
A simple real-time Punycode encoder/decoder.
https://github.com/magicalmonke/punycode-encoder
express nodejs picocss punycode
Last synced: 5 days ago
JSON representation
A simple real-time Punycode encoder/decoder.
- Host: GitHub
- URL: https://github.com/magicalmonke/punycode-encoder
- Owner: magicalmonke
- License: mit
- Created: 2025-02-14T14:40:43.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-02-14T14:49:48.000Z (10 months ago)
- Last Synced: 2025-02-17T07:11:55.574Z (10 months ago)
- Topics: express, nodejs, picocss, punycode
- Language: HTML
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Punycode Encoder
A simple real-time Punycode encoder/decoder built with [Node.js](https://nodejs.org/en) and [Express](https://expressjs.com),featuring real-time encoding/decoding between Unicode and Punycode. The app uses [Pico CSS](https://picocss.com) for a modern design.
## Getting Started
### Installation
1. Clone the repository:
```bash
git clone https://github.com/magicalmonke/punycode-encoder.git
cd punycode-encoder
```
2. Install dependencies:
```bash
npm install
```
### Usage
To start the application:
```bash
node index.js
```
The app will run at http://localhost:3000 by default.
## Docker Deployment
1. Build the Docker image:
```bash
docker build -t punycode-encoder .
```
2. Run the container:
```bash
docker run -d -p 3000:3000 punycode-encoder
```