![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Create self signed ssl certificates without OpenSSL.
npm install -g mkcert
$ mkcert create-ca --help
Usage: create-ca [options]
Options:
--organization [value] Organization name (default: "Test CA")
--country-code [value] Country code (default: "US")
--state [value] State name (default: "California")
--locality [value] Locality address (default: "San Francisco")
--validity [days] Validity in days (default: 365)
--key [file] Output key (default: "ca.key")
--cert [file] Output certificate (default: "ca.crt")
-h, --help output usage information
$ mkcert create-cert --help
Usage: create-cert [options]
Options:
--ca-key [file] CA private key (default: "ca.key")
--ca-cert [file] CA certificate (default: "ca.crt")
--validity [days] Validity in days (default: 365)
--key [file] Output key (default: "cert.key")
--cert [file] Output certificate (default: "cert.crt")
--domains [values] Comma separated list of domains/ip addresses (default: "localhost,127.0.0.1")
-h, --help output usage information
import * as mkcert from 'mkcert';
//Create a Certificate Authority
mkcert.createCA({
organization: 'Hello CA',
countryCode: 'NP',
state: 'Bagmati',
locality: 'Kathmandu',
validityDays: 365
})
.then((ca)=> {
console.log(ca.key, ca.cert);
})
.catch(err=> console.error(err));
import * as mkcert from 'mkcert';
//Create a CA first
//Then create the certificate
mkcert.createCert({
domains: ['127.0.0.1', 'localhost'],
validityDays: 365,
caKey: ca.key,
caCert: ca.cert
})
.then((cert)=> {
console.log(cert.key, cert.cert);
//Create a full chain certificate by merging CA and domain certificates
console.log(`${cert.cert}\n${ca.cert}`);
})
.catch(err=> console.error(err));
FAQs
Create Self Signed Development Certificates
The npm package mkcert receives a total of 62,226 weekly downloads. As such, mkcert popularity was classified as popular.
We found that mkcert 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.