Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Install: npm install npa
This project is Unlicensed. In other words, I don't care what you do with it. However, if you make something interesting, I would like to check it out.
Well, the wiki article probably says enough. Find it here.
NOTE: This was just for fun. Inspired by "Foxtrot Uniform Charlie Kilo" - Bloodhound Gang.
var NPA = require('npa')();
NPA.toNPA(string) - Convert a string to NPA.
NPA.fromNPA(string) - Convert a string from NPA.
NPA.toMorse(string) - Convert a string to morse code.
NPA.fromMorse(string) - Convert a string from morse code.
Node.js:
var NPA = require('npa')(),
string = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla interdum.';
var morse = NPA.toMorse(string);
console.log('(toMorse) '+string+':\n '+morse+'\n\n');
console.log('(fromMorse) '+morse+':\n '+NPA.fromMorse(morse)+'\n\n');
var npa = NPA.toNPA(string);
console.log('(toNPA) '+string+':\n '+npa+'\n\n');
console.log('(fromNPA) '+npa+':\n '+NPA.fromNPA(npa)+'\n\n');
Browser:
<script src="./npa.js"></script>
<script>
var string = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla interdum.',
morse = NPA.toMorse(string);
alert('(toMorse) '+string+':\n '+morse+'\n\n');
alert('(fromMorse) '+morse+':\n '+NPA.fromMorse(morse)+'\n\n');
var npa = NPA.toNPA(string);
alert('(toNPA) '+string+':\n '+npa+'\n\n');
alert('(fromNPA) '+npa+':\n '+NPA.fromNPA(npa)+'\n\n');
</script>
FAQs
Convert strings of text to/from NATO phonetic alphabet and morse code.
The npm package npa receives a total of 8 weekly downloads. As such, npa popularity was classified as not popular.
We found that npa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.