Socket
Book a DemoInstallSign in
Socket

noshift.js

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

noshift.js

Joke language.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
0
Created
Source

NoShift.js

Setup

npm install -g noshift.js@latest
npx nsjs create

English

Language

NoShift.js

Extension

.nsjs

Summary

Typing symbols with Shift is tiring. NoShift.js is a JavaScript-like language that allows you to write JavaScript without using the Shift key.
It compiles to plain JavaScript.

The mapping is based on the keyboard layout of the creator’s laptop.

日本語

言語名

NoShift.js

拡張子

.nsjs

概略

記号を入力するときに Shift を押すのが面倒なので、Shift を押さずに JavaScript が書ける言語を作りました。 NoShift.js は JavaScript に変換されます。

この記号変換の基準は、作者のノートパソコンのキーボード配列です。

! --> ^1
" --> ^2
$ --> ^4
% --> ^5
& --> ^6
' --> ^7
( --> ^8
) --> ^9
= --> ^-
~ --> ^^
| --> ^\
` --> ^@
{ --> ^[
} --> ^]
+ --> ^;
* --> ^:
< --> ^,
> --> ^.
? --> ^/

Escaping in strings

Examples:

^2^5^2 --> "^5"
^7^5^7 --> '^5'
^@^5^@ --> `^5`

Template literals (${} syntax)

^@^5^4^[^2Hello World!^2^]^@ --> `^5${"Hello World!"}`

Hello World! Example:

console.log^8^2Hello World!^2^9;
Result:
console.log("Hello World!");

Keywords

noshift

FAQs

Package last updated on 02 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts