The following are the practical aspects of the front-end project modularity, including the following:
- Build NPM private Warehouse management source and dependence;
- Use Webpack to package the infrastructure code;
- Writing a reliable class library using TypeScript (in implementation)
This article is about the 1th part of the front-end project templating
Use Docker to build a private NPM warehouse
The use of Docker is not in this article, please refer to other documentation yourself.
After testing, Keyvanfatehi/sinopia is available.
- Pull the Docker image down
docker pull keyvanfatehi/sinopia
- Run the keyvanfatehi/sinopia .
docker run --name sinopia -d -p 4873:4873 keyvanfatehi/sinopia
My docker hostname is UBUNTU-17, at which point http://ubuntu-17/4873
you can access the private NPM Warehouse Web page.
Publish a JavaScript class library
Add a sample Class Library project mygreeting
mkdir myGreetingcd myGreetingyarn init -y # npm init -ytouch index.js
Add the following within Index.js
let greeting = function(name) { return 'Hello ' + name;}module.exports = greeting;
This code exports a function that can be published and relied upon.
- NPM AddUser
The first time you use this private repository you need to add users
npm adduser --registry http://ubuntu-17:4873
- NPM Publish
And then post the code up there.
npm publish . --registry http://ubuntu-17:4873
NPM has its own version and release strategy, and can use the following commands to view the Help documentation
npm help version
npm help publish
The release may fail because of a version issue, and the APPEND predicate --force can be forced to publish but is not a regular operation.
Post-Release Administration page diagram
Referencing a published class library
Add a sample business item Mydemo
mkdir myDemocd myDemoyarn init -y # npm init -ytouch index.js
Reference mygreeting
yarn add myGreeting --dev --registry http://ubuntu-17:4873
Add the following within Index.js
const myGreeting = require('myGreeting');(function() { let greeting = myGreeting('Rattz'); console.log(greeting);})();
Run up
node index.jsHello Rattz
At this point, the private NPM repository builds, class library releases, and dependent references have been completed.
The source code used for the project has been released GITHUB,JUSFRW original