Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task: extract and create npm package #6172

Open
wants to merge 240 commits into
base: main
Choose a base branch
from

Conversation

thewahome
Copy link
Contributor

@thewahome thewahome commented Feb 19, 2025

Overview

  • Extracts the npm package code into its own folder inside the vscode folder.
  • Adds pipeline changes to generate both the package and vsix in the GitHub actions
  • Adds pipeline changes to deploy the npm package to npm

Closes

Closes #6098
Closes #6299
Closes #6302
Closes #6304
Closes #6346

Folder Visualisation

vscode
├── microsoft-kiota/
├── npm-package/
│ ├── lib/
│ │ ├── generateClient.ts
│ │ ├── generatePlugin.ts
│ │ └── ...
│ ├── tests/
│ │ ├── generateClient.spec.ts
│ │ └── ...
│ ├── connect.ts
│ ├── install.ts
│ ├── ...
│ ├── runtime.json
│ ├── readme.md
│ └── index.ts
├── node_modules/
├── ...
├── lerna.json
└── package.json

Testing the npm package

  1. Package the Kiota npm package. It should generate a .tgz file microsoft-kiota-1.0.0.tgz.
cd vscode/npm-package
npm pack
  1. Create a new directory for your project and navigate into it:
    Initialize a new Node.js project. The default is (commonjs), but you can change it later to ES6 modules by setting "module": "ES6" in your tsconfig.json file and reinstall the kiota npm package
mkdir use-kiota
cd use-kiota
npm init -y
npm install typescript @types/node --save-dev
npm install 'path/to/microsoft-kiota-1.0.0.tgz'
npx tsc --init
code .
  1. Create a new file named index.ts at the root of the project and add the following code:
import { getKiotaVersion } from '@microsoft/kiota';
const getVersion = async () => {
  const version = await getKiotaVersion();
  console.log(version);
}
console.log("Hello, World!");
getVersion();
  1. Run the TypeScript compiler to compile your index.ts file into JavaScript and run the compiled code:
npx tsc
node index.js

The expected result is:

Hello, World!
1.23.0

Changing the download location

To change the default location of the downloaded binaries, update the import command to include the configuration.

import { getKiotaVersion, setKiotaConfig } from '@microsoft/kiota';
setKiotaConfig({ binaryLocation: "C:\\path\\to\\use-kiota\\binaries" });
const getVersion = async () => {
  const version = await getKiotaVersion();
  console.log(version);
}
console.log("Hello, World!");
getVersion();

You should expect the same results and also see the binaries in the folder you selected

thewahome and others added 22 commits March 27, 2025 19:00
…ules

Add flag to be able to apply kiota validation rules on getKiotaTree
…-tests

getKiotaTree integration tests and fix mappings RPC-package
…deloading

Sideloading env variable to copy kiota zip from
@thewahome thewahome requested review from calebkiage and baywet April 2, 2025 14:06
@thewahome thewahome enabled auto-merge (squash) April 2, 2025 17:20
Comment on lines +133 to +136
public bool? IncludeKiotaValidationRules
{
get; set;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't need this, just pass "all" to DisableedValidationRules

@@ -52,7 +58,14 @@ export async function ensureKiotaIsPresent() {
}
fs.mkdirSync(installPath, { recursive: true });
const zipFilePath = `${installPath}.zip`;
await downloadFileFromUrl(getDownloadUrl(currentPlatform), zipFilePath);
// If env variable that points to kiota binary zip exists, use it to copy the file instead of downloading it
const kiotaBinaryZip = process.env.SIDELOADING_KIOTA_BINARY_ZIP_PATH;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the environment variable should start with KIOTA_ to be consistent with the other environment variables

"@types/adm-zip": "^0.5.7",
"@types/jest": "^29.5.14",
"cpx": "^1.5.0",
"glob": "^11.0.1",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isn't glob a runtime dependency?

working-directory: vscode/microsoft-kiota
run: |
npm install
npm list
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why an npm list here?

@baywet baywet disabled auto-merge April 2, 2025 19:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
5 participants