npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tfx-migration-helper

v0.0.23

Published

CLI to reduce manual steps to migrate samples to TeamsFX V3.

Downloads

34

Readme

tfx-migration-helper

CLI to reduce manual steps to migrate samples to TeamsFX V3.

Usage

  1. Install the CLI

    npm install tfx-migration-helper -g
  2. cd to the root folder of the project to be migrated

  3. Run migration command:

    tfxm migrate -t <app-type> -n <app-name>

    e.g.

    tfxm migrate -t tab -n personal-tab

Migration steps

Tab

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3/samples/tab-ui-templates/ts as example, the steps are:

  • Run tfxm migrate -t tab -n tab-ui-templates
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update teamsapp.local.yml
    • Change value of manifestPath to ./src/manifest/manifest.json
  • Update package.json
    • Install dev dependency: npm install --save-dev env-cmd
    • Add 'dev:teamsfx' in 'scripts' section, and update "start" section:
      "dev:teamsfx": "env-cmd --silent -f .localConfigs npm run start",
      "start": "react-scripts start",

Tab SSO

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3/samples/tab-sso/nodejs as example, the steps are:

  • Run tfxm migrate -t tab-sso -n tab-sso

  • Update .gitignore: copy or append content from .gitignore.example

  • Update placeholder in manifest.json

  • Update package.json, add 'dev:teamsfx' in 'scripts' section:

    "dev:teamsfx": "npm run start",

  • Add redirect url in replyUrlsWithType of aad.manifest.json

    {
        "url": "${{TAB_ENDPOINT}}/auth-end",
        "type": "Spa"
    },
    {
        "url": "${{TAB_ENDPOINT}}/Home/BrowserRedirect",
        "type": "Spa"
    },

Bot

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3/samples/bot-conversation/nodejs as example, the steps are:

  • Run tfxm migrate -t bot -n bot-conversation
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update color.png and outline.png to make them pass validation rules
  • Update package.json, add 'dev:teamsfx' and 'dev' in 'scripts' section:
    "dev:teamsfx": "npm run dev",
    "dev": "nodemon --inspect=9239 --signal SIGINT ./index.js",
  • For single-tenant support:
    • Change environment variables: https://github.com/formulahendry/Microsoft-Teams-Samples/blob/70e6840a53be1cd76adb8478fc118ce6d055c089/samples/bot-conversation/nodejs/teamsapp.local.yml#L33C1-L34
    • Change signInAudience to AzureADMyOrg: https://github.com/formulahendry/Microsoft-Teams-Samples/blob/70e6840a53be1cd76adb8478fc118ce6d055c089/samples/bot-conversation/nodejs/teamsapp.local.yml#L11

Bot SSO

Use https://github.com/formulahendry/Microsoft-Teams-Samples/blob/junhan/v3/samples/bot-conversation-sso-quickstart/js/ as example, the steps are:

  • Run tfxm migrate -t bot-sso -n bot-conversation-sso-quickstart
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update color.png and outline.png to make them pass validation rules
  • Update package.json, add 'dev:teamsfx' and 'dev' in 'scripts' section:
    "dev:teamsfx": "npm run dev",
    "dev": "nodemon --inspect=9239 --signal SIGINT ./index.js",
  • For single-tenant support:
    • Change environment variables: https://github.com/formulahendry/Microsoft-Teams-Samples/blob/f5e21ef37e9a141e3dfde07485e21f07256eb4e2/samples/bot-conversation-sso-quickstart/js/teamsapp.local.yml#L31-L34
    • Change signInAudience to AzureADMyOrg: https://github.com/formulahendry/Microsoft-Teams-Samples/blob/f5e21ef37e9a141e3dfde07485e21f07256eb4e2/samples/bot-conversation-sso-quickstart/js/teamsapp.local.yml#LL9C24-L9C36

Message extensions

Use https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/msgext-action-quickstart/js as example, the steps are:

  • Run tfxm migrate -t bot -n msgext-action-quickstart
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update package.json, add 'dev:teamsfx' and 'dev' in 'scripts' section:
    "dev:teamsfx": "npm run dev",
    "dev": "nodemon --inspect=9239 --signal SIGINT ./index.js",
  • Update teamsapp.local.yml, change file/createOrUpdateEnvironmentFile action:
    - uses: file/createOrUpdateEnvironmentFile
      with:
        target: ./.env
        envs:
          BotId: ${{AAD_APP_CLIENT_ID}}
          BotPassword: ${{SECRET_AAD_APP_CLIENT_SECRET}}

Message extensions SSO

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3/samples/msgext-search-sso-config/nodejs as example, the steps are:

  • Run tfxm migrate -t bot-sso -n msgext-search-sso-config
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update package.json, add 'dev:teamsfx' and 'dev' in 'scripts' section:
    "dev:teamsfx": "npm run dev",
    "dev": "nodemon --inspect=9239 --signal SIGINT ./index.js",
  • Update teamsapp.local.yml, change file/createOrUpdateEnvironmentFile action:
    - uses: file/createOrUpdateEnvironmentFile
      with:
        target: ./.env
        envs:
          MicrosoftAppId: ${{AAD_APP_CLIENT_ID}}
          MicrosoftAppPassword: ${{SECRET_AAD_APP_CLIENT_SECRET}}
          connectionName: ${{CONNECTION_NAME}}
          SiteUrl: ${{BOT_ENDPOINT}}

Tab + Bot

Use https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/app-hello-world/nodejs as example, the steps are:

  • Run tfxm migrate -t bot -n app-hello-world
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update package.json, add 'dev:teamsfx' and 'dev' in 'scripts' section:
    "dev:teamsfx": "npm run dev",
    "dev": "nodemon --exec babel-node --inspect=9239 --signal SIGINT src/app.js",
  • Update teamsapp.local.yml, change file/createOrUpdateEnvironmentFile action:
    # Generate runtime environment variables
    - uses: file/createOrUpdateEnvironmentFile
      with:
        target: ./.env
        envs:
          PORT: 3978
    - uses: file/createOrUpdateJsonFile
      with:
        target: ./config/default.json # Required. The relative path of settings file
        appsettings: # Required. The appsettings to be generated
          bot:
            appId: ${{AAD_APP_CLIENT_ID}}
            appPassword: ${{SECRET_AAD_APP_CLIENT_SECRET}}
  • Fix code in src\app.js:
    const ENV_FILE = path.join(__dirname, '..', '.env');

Tab (yo teams)

Use https://github.com/formulahendry/yo-teams-migration/tree/main/tab as example, the steps are:

  • Run tfxm migrate -t tab -n tab
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update package.json, add 'dev:teamsfx' in 'scripts' section:
    "dev:teamsfx": "gulp serve --debug --no-schema-validation",
  • Update tasks.json
    • Add "Start local tunnel" task
    • Change "Start frontend": "endsPattern": "Server running on"
  • Update teamsapp.local.yml
    • Remove "Set TAB_DOMAIN and TAB_ENDPOINT for local launch"
    • Update manifestPath
    • Replace whole 'deploy' lifecycle:
      # Run npm command
      - uses: cli/runNpmCommand
        with:
          args: install --no-audit
        
      # Generate runtime environment variables
      - uses: file/createOrUpdateEnvironmentFile
        with:
          target: ./.env
          envs:
            PORT: 53000

Tab SSO (yo teams)

Use https://github.com/formulahendry/yo-teams-migration/tree/main/tab-sso as example, the steps are:

  • Run tfxm migrate -t tab-sso -n tab-sso
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update package.json, add 'dev:teamsfx' in 'scripts' section:
    "dev:teamsfx": "gulp serve --debug --no-schema-validation",
  • Update tasks.json
    • Change "Start frontend": "endsPattern": "Server running on"
  • Update teamsapp.local.yml
    • Update manifestPath
    • Replace 'file/createOrUpdateJsonFile' action:
      # Generate runtime environment variables
      - uses: file/createOrUpdateEnvironmentFile
        with:
          target: ./.env
          envs:
            PORT: 53000
            TAB_APP_ID: ${{AAD_APP_CLIENT_ID}}
            TAB_APP_URI: api://${{TAB_DOMAIN}}/${{AAD_APP_CLIENT_ID}}

Bot (yo teams)

Use https://github.com/formulahendry/yo-teams-migration/tree/main/bot as example, the steps are:

  • Run tfxm migrate -t bot -n bot
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update package.json, add 'dev:teamsfx' in 'scripts' section:
    "dev:teamsfx": "gulp serve --debug --no-schema-validation",
  • Update tasks.json
    • Change "Start frontend": "endsPattern": "Server running on"
  • Update teamsapp.local.yml
    • Update manifestPath
    • Replace 'file/createOrUpdateJsonFile' action:
      # Generate runtime environment variables
      - uses: file/createOrUpdateEnvironmentFile
        with:
          target: ./.env
          envs:
            PORT: 3978
            MICROSOFT_APP_ID: ${{AAD_APP_CLIENT_ID}}
            MICROSOFT_APP_PASSWORD: ${{SECRET_AAD_APP_CLIENT_SECRET}}

Tab+Bot (yo teams)

Use https://github.com/formulahendry/yo-teams-migration/tree/main/tab+bot as example, the steps are same as Bot (yo teams).


Tab (C#)

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3-dotnet/samples/tab-personal/mvc-csharp as example, the steps are:

  • Run tfxm migrate -t tab-csharp -n tab-personal in the folder which contains the .csproj file
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update teamsapp.local.yml
    • Change value of manifestPath to ./AppManifest/manifest.json

Tab SSO (C#)

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3-dotnet/samples/tab-personal-sso-quickstart/csharp_dotnetcore as example, the steps are:

  • Run tfxm migrate -t tab-sso-csharp -n tab-personal-sso-quickstart in the folder which contains the .csproj file
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update teamsapp.local.yml
    • Change value of manifestPath of teamsApp to ./Manifest/manifest.json

Bot (C#)

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3-dotnet/samples/bot-conversation/csharp as example, the steps are:

  • Run tfxm migrate -t bot-csharp -n bot-conversation in the folder which contains the .csproj file
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json
  • Update teamsapp.local.yml
    • Change value of manifestPath of teamsApp to ./TeamsAppManifest/manifest.json

Bot SSO (C#)

Use https://github.com/formulahendry/Microsoft-Teams-Samples/tree/junhan/v3-dotnet/samples/bot-conversation-sso-quickstart/csharp_dotnetcore as example, the steps are:

  • Run tfxm migrate -t bot-sso-csharp -n bot-conversation-sso-quickstart in the folder which contains the .csproj file
  • Update .gitignore: copy or append content from .gitignore.example
  • Update placeholder in manifest.json

Message extensions (C#)

The steps are similar to Bot (C#). For some ME projects that have BaseUrl in appsettings.json, you just need to add BaseUrl: ${{BOT_ENDPOINT}} in teamsapp.local.yml like below:

# Generate runtime appsettings to JSON file
- uses: file/createOrUpdateJsonFile
  with:
    target: ./appsettings.json
    content:
      MicrosoftAppId: ${{AAD_APP_CLIENT_ID}}
      MicrosoftAppPassword: ${{SECRET_AAD_APP_CLIENT_SECRET}}
      MicrosoftAppType: ${{MICROSOFT_APP_TYPE}}
      MicrosoftAppTenantId: ${{MICROSOFT_APP_TENANT_ID}}
      BaseUrl: ${{BOT_ENDPOINT}}

Message extensions SSO (C#)

The steps are similar to Bot SSO (C#). For some ME SSO projects that have SiteUrl in appsettings.json, you just need to add SiteUrl: ${{BOT_ENDPOINT}} in teamsapp.local.yml like below:

# Generate runtime appsettings to JSON file
- uses: file/createOrUpdateJsonFile
  with:
    target: ./appsettings.json
    content:
      MicrosoftAppId: ${{AAD_APP_CLIENT_ID}}
      MicrosoftAppPassword: ${{SECRET_AAD_APP_CLIENT_SECRET}}
      ConnectionName: ${{CONNECTION_NAME}}
      MicrosoftAppType: ${{MICROSOFT_APP_TYPE}}
      MicrosoftAppTenantId: ${{MICROSOFT_APP_TENANT_ID}}
      SiteUrl: ${{BOT_ENDPOINT}}